diff --git a/charts/open-webui/templates/NOTES.txt b/charts/open-webui/templates/NOTES.txt index 7977064..1fe5e46 100644 --- a/charts/open-webui/templates/NOTES.txt +++ b/charts/open-webui/templates/NOTES.txt @@ -51,14 +51,11 @@ This interface allows you to easily interact with local AI models. kubectl get -n {{ .Release.Namespace }} svc {{ include "open-webui.name" . }} --watch export EXTERNAL_IP=$(kubectl get -n {{ .Release.Namespace }} svc {{ include "open-webui.name" . }} -o jsonpath="{.status.loadBalancer.ingress[0].hostname:-.status.loadBalancer.ingress[0].ip}") echo http://$EXTERNAL_IP:{{ .Values.service.port }} - -{{- else if .Values.ingress.enabled }} -{{- range $host := .Values.ingress.hosts }} - {{- range .paths }} - Ingress is enabled. Access the application at: - http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} - {{- end }} {{- end }} + +{{- if .Values.ingress.enabled }} + + Ingress is enabled. Access the application at: http{{ if .Values.ingress.tls }}s{{ end }}://{{ .Values.ingress.host }} {{- end }} 3. Useful Commands: @@ -77,4 +74,4 @@ This interface allows you to easily interact with local AI models. 4. Cleanup: - Uninstall the deployment: - helm uninstall {{ .Release.Name }} + helm uninstall {{ .Release.Name }} -n {{ .Release.Namespace }}