From 42d4ab2a0ab56bf4953e6fb77a8268d478d2df32 Mon Sep 17 00:00:00 2001
From: itsJohnySmith <[email protected]>
Date: Fri, 14 Mar 2025 21:01:11 +0100
Subject: [PATCH] fix(templates): replace dash with underscore (#19566)
---
helm/minio/templates/NOTES.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/helm/minio/templates/NOTES.txt b/helm/minio/templates/NOTES.txt
index ba51b4c6c7b3d..ee02a6fd8e06d 100644
--- a/helm/minio/templates/NOTES.txt
+++ b/helm/minio/templates/NOTES.txt
@@ -14,9 +14,9 @@ You can now access MinIO server on http://localhost:9000. Follow the below steps
1. Download the MinIO mc client - https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart
- 2. export MC_HOST_{{ template "minio.fullname" . }}-local=http://$(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "minio.secretName" . }} -o jsonpath="{.data.rootUser}" | base64 --decode):$(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "minio.secretName" . }} -o jsonpath="{.data.rootPassword}" | base64 --decode)@localhost:{{ .Values.service.port }}
+ 2. export MC_HOST_{{ template "minio.fullname" . }}_local=http://$(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "minio.secretName" . }} -o jsonpath="{.data.rootUser}" | base64 --decode):$(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "minio.secretName" . }} -o jsonpath="{.data.rootPassword}" | base64 --decode)@localhost:{{ .Values.service.port }}
- 3. mc ls {{ template "minio.fullname" . }}-local
+ 3. mc ls {{ template "minio.fullname" . }}_local
{{- end }}
{{- if eq .Values.service.type "LoadBalancer" }}
@@ -29,7 +29,7 @@ You can now access MinIO server on http://