mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-12 17:40:24 +00:00
Merge pull request #21 from plenti-chris-fowles/main
render env vars as yaml
This commit is contained in:
commit
2c51864489
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: open-webui
|
name: open-webui
|
||||||
version: 2.0.2
|
version: 2.1.0
|
||||||
appVersion: "latest"
|
appVersion: "latest"
|
||||||
|
|
||||||
home: https://www.openwebui.com/
|
home: https://www.openwebui.com/
|
||||||
@ -26,7 +26,6 @@ dependencies:
|
|||||||
repository: https://otwld.github.io/ollama-helm/
|
repository: https://otwld.github.io/ollama-helm/
|
||||||
version: ">=0.24.0"
|
version: ">=0.24.0"
|
||||||
import-values:
|
import-values:
|
||||||
|
|
||||||
- child: service
|
- child: service
|
||||||
parent: ollama.service
|
parent: ollama.service
|
||||||
condition: ollama.enabled
|
condition: ollama.enabled
|
||||||
|
@ -42,11 +42,8 @@ spec:
|
|||||||
env:
|
env:
|
||||||
- name: OLLAMA_BASE_URLS
|
- name: OLLAMA_BASE_URLS
|
||||||
value: {{ include "ollamaBaseUrls" . | quote }}
|
value: {{ include "ollamaBaseUrls" . | quote }}
|
||||||
{{- with .Values.extraEnvVars }}
|
{{- if .Values.extraEnvVars }}
|
||||||
{{- range . }}
|
{{- toYaml .Values.extraEnvVars | nindent 8 }}
|
||||||
- name: {{ .name }}
|
|
||||||
value: {{ .value | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
tty: true
|
tty: true
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
|
@ -15,7 +15,6 @@ ollama:
|
|||||||
# persistentVolume:
|
# persistentVolume:
|
||||||
# enabled: true
|
# 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.
|
# -- 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: []
|
ollamaUrls: []
|
||||||
|
|
||||||
@ -69,6 +68,11 @@ service:
|
|||||||
loadBalancerClass: ""
|
loadBalancerClass: ""
|
||||||
|
|
||||||
# -- Additional environments variables on the output Deployment definition.
|
# -- Additional environments variables on the output Deployment definition.
|
||||||
extraEnvVars: []
|
extraEnvVars:
|
||||||
|
# - name: OPENAI_API_KEY
|
||||||
|
# valueFrom:
|
||||||
|
# secretKeyRef:
|
||||||
|
# name: openai-api-key
|
||||||
|
# key: api-key
|
||||||
# - name: OLLAMA_DEBUG
|
# - name: OLLAMA_DEBUG
|
||||||
# value: "1"
|
# value: "1"
|
||||||
|
Loading…
Reference in New Issue
Block a user