mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-26 18:16:14 +00:00
render envVars as yaml (allow valueFrom)
This commit is contained in:
parent
79626f0828
commit
d0e695b57c
@ -26,7 +26,6 @@ dependencies:
|
||||
repository: https://otwld.github.io/ollama-helm/
|
||||
version: ">=0.24.0"
|
||||
import-values:
|
||||
|
||||
- child: service
|
||||
parent: ollama.service
|
||||
condition: ollama.enabled
|
||||
|
@ -42,11 +42,8 @@ spec:
|
||||
env:
|
||||
- name: OLLAMA_BASE_URLS
|
||||
value: {{ include "ollamaBaseUrls" . | quote }}
|
||||
{{- with .Values.extraEnvVars }}
|
||||
{{- range . }}
|
||||
- name: {{ .name }}
|
||||
value: {{ .value | quote }}
|
||||
{{- end }}
|
||||
{{- if .Values.extraEnvVars }}
|
||||
{{- toYaml .Values.extraEnvVars | nindent 8 }}
|
||||
{{- end }}
|
||||
tty: true
|
||||
{{- with .Values.nodeSelector }}
|
||||
|
@ -15,7 +15,6 @@ ollama:
|
||||
# persistentVolume:
|
||||
# enabled: true
|
||||
|
||||
|
||||
# -- A list of Ollama API endpoints. These can be added in lieu of automatically installing the Ollama Helm chart, or in addition to it.
|
||||
ollamaUrls: []
|
||||
|
||||
@ -69,6 +68,11 @@ service:
|
||||
loadBalancerClass: ""
|
||||
|
||||
# -- Additional environments variables on the output Deployment definition.
|
||||
extraEnvVars: []
|
||||
# - name: OLLAMA_DEBUG
|
||||
# value: "1"
|
||||
extraEnvVars:
|
||||
- name: OPENAI_API_KEY
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: openai-api-key
|
||||
key: api-key
|
||||
- name: OLLAMA_DEBUG
|
||||
value: "1"
|
||||
|
Loading…
Reference in New Issue
Block a user