Skip to content

Commit

Permalink
Merge pull request #84 from davizucon/main
Browse files Browse the repository at this point in the history
FIX: ollama url and env vars when ollama.enabled=False
  • Loading branch information
0xThresh authored Sep 27, 2024
2 parents 63055b9 + 6ebb3da commit bb0f668
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/open-webui/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: open-webui
version: 3.1.18
appVersion: "0.3.23"
version: 3.1.19
appVersion: "0.3.24"

home: https://www.openwebui.com/
icon: https://raw.githubusercontent.com/open-webui/open-webui/main/static/favicon.png
Expand Down
2 changes: 1 addition & 1 deletion charts/open-webui/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# open-webui

![Version: 3.1.9](https://img.shields.io/badge/Version-3.1.8-informational?style=flat-square) ![AppVersion: 0.3.13](https://img.shields.io/badge/AppVersion-0.3.13-informational?style=flat-square)
![Version: 3.1.19](https://img.shields.io/badge/Version-3.1.19-informational?style=flat-square) ![AppVersion: 0.3.13](https://img.shields.io/badge/AppVersion-0.3.13-informational?style=flat-square)

Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋

Expand Down
5 changes: 5 additions & 0 deletions charts/open-webui/templates/workload-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,13 @@ spec:
- name: data
mountPath: /app/backend/data
env:
{{ if .Values.ollama.enabled }}
- name: OLLAMA_BASE_URLS
value: {{ include "ollamaBaseUrls" . | quote }}
{{ else }}
- name: ENABLE_OLLAMA_API
value: "False"
{{- end }}
{{ if .Values.pipelines.enabled }}
- name: OPENAI_API_BASE_URL
value: {{ include "pipelines.serviceEndpoint" . }}
Expand Down

0 comments on commit bb0f668

Please sign in to comment.