From b122e43b2d8b287a0ff001db6e441dabefec3195 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Mon, 30 Jun 2025 13:33:14 +0100 Subject: [PATCH] fix localhost registry warning --- hosting/k8s/helm/templates/NOTES.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosting/k8s/helm/templates/NOTES.txt b/hosting/k8s/helm/templates/NOTES.txt index 21f8f0b77..e70d18dd7 100644 --- a/hosting/k8s/helm/templates/NOTES.txt +++ b/hosting/k8s/helm/templates/NOTES.txt @@ -87,7 +87,7 @@ Configuration: - Using internal Docker registry {{- else }} - Using external Docker registry at {{ .Values.registry.external.host }} -{{- if eq .Values.registry.external.host "localhost" }} +{{- if hasPrefix "localhost" .Values.registry.external.host }} ⚠️ Registry Warning: Using localhost for registry. Deployments will only work when testing locally in kind or minikube.