mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-15 02:48:39 +00:00
Merge pull request #84 from davizucon/main
FIX: ollama url and env vars when ollama.enabled=False
This commit is contained in:
commit
bb0f668201
@ -1,7 +1,7 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: open-webui
|
name: open-webui
|
||||||
version: 3.1.18
|
version: 3.1.19
|
||||||
appVersion: "0.3.23"
|
appVersion: "0.3.24"
|
||||||
|
|
||||||
home: https://www.openwebui.com/
|
home: https://www.openwebui.com/
|
||||||
icon: https://raw.githubusercontent.com/open-webui/open-webui/main/static/favicon.png
|
icon: https://raw.githubusercontent.com/open-webui/open-webui/main/static/favicon.png
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# open-webui
|
# open-webui
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋
|
Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋
|
||||||
|
|
||||||
|
@ -73,8 +73,13 @@ spec:
|
|||||||
- name: data
|
- name: data
|
||||||
mountPath: /app/backend/data
|
mountPath: /app/backend/data
|
||||||
env:
|
env:
|
||||||
|
{{ if .Values.ollama.enabled }}
|
||||||
- name: OLLAMA_BASE_URLS
|
- name: OLLAMA_BASE_URLS
|
||||||
value: {{ include "ollamaBaseUrls" . | quote }}
|
value: {{ include "ollamaBaseUrls" . | quote }}
|
||||||
|
{{ else }}
|
||||||
|
- name: ENABLE_OLLAMA_API
|
||||||
|
value: "False"
|
||||||
|
{{- end }}
|
||||||
{{ if .Values.pipelines.enabled }}
|
{{ if .Values.pipelines.enabled }}
|
||||||
- name: OPENAI_API_BASE_URL
|
- name: OPENAI_API_BASE_URL
|
||||||
value: {{ include "pipelines.serviceEndpoint" . }}
|
value: {{ include "pipelines.serviceEndpoint" . }}
|
||||||
|
Loading…
Reference in New Issue
Block a user