Print namespace in notes.

This commit is contained in:
Joshua Carp 2018-11-02 09:39:45 -04:00
parent 01b72b169d
commit 3dd4064faf

View file

@ -7,13 +7,13 @@ echo '{"apiVersion": "apiextensions.k8s.io/v1beta1","kind": "CustomResourceDefin
2. Get Argo UI external IP/domain by running:
kubectl get services -o wide | grep {{ .Release.Name }}-{{ .Values.uiName }}
kubectl --namespace {{ .Release.Namespace }} get services -o wide | grep {{ .Release.Name }}-{{ .Values.uiName }}
{{ if .Values.minio.install }}
3. Access Minio UI and create bucket '{{ .Values.minio.defaultBucket.name }}'. Minio UI is available on port 9000 and available via external URL. URL might be retrieved using following
command:
kubectl get services -o wide | grep {{ .Release.Name }}-minio-svc
kubectl --namespace {{ .Release.Namespace }} get services -o wide | grep {{ .Release.Name }}-minio-svc
{{ end }}