Print namespace in notes. (#23)

This commit is contained in:
Joshua Carp 2018-11-29 17:01:42 -05:00 committed by Jesse Suen
parent 01b72b169d
commit b487b6c107

View file

@ -7,13 +7,13 @@ echo '{"apiVersion": "apiextensions.k8s.io/v1beta1","kind": "CustomResourceDefin
2. Get Argo UI external IP/domain by running: 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 }} {{ 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 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: 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 }} {{ end }}