"git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "ff8a55a861836aa27f00a53638de4865e26cef52"
Unverified Commit e08c144f authored by Dario Thornhill's avatar Dario Thornhill Committed by GitHub
Browse files

fix(helm): remove trailing slash

The trailing `/` causes requests to be written with `//` and results in 404 responses from the ollama service.

This results in ollama models being unusable. Removing the training slash here resolves the issue.
parent 0399a69b
...@@ -10,7 +10,7 @@ ollama ...@@ -10,7 +10,7 @@ ollama
{{- if .Values.ollama.externalHost }} {{- if .Values.ollama.externalHost }}
{{- printf .Values.ollama.externalHost }} {{- printf .Values.ollama.externalHost }}
{{- else }} {{- else }}
{{- printf "http://%s.%s.svc.cluster.local:%d/" (include "ollama.name" .) (.Release.Namespace) (.Values.ollama.service.port | int) }} {{- printf "http://%s.%s.svc.cluster.local:%d" (include "ollama.name" .) (.Release.Namespace) (.Values.ollama.service.port | int) }}
{{- end }} {{- end }}
{{- end }} {{- end }}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment