Преглед на файлове

Merge pull request #1532 from dariothornhill/1478-remove-trailing-slash

fix(helm): remove trailing slash
Timothy Jaeryang Baek преди 1 година
родител
ревизия
8e30948de9
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      kubernetes/helm/templates/_helpers.tpl

+ 1 - 1
kubernetes/helm/templates/_helpers.tpl

@@ -10,7 +10,7 @@ ollama
 {{- if .Values.ollama.externalHost }}
 {{- printf .Values.ollama.externalHost }}
 {{- 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 }}