argocd-helm/charts/argo/templates/NOTES.txt
Wen-Chih (Ryan) Lo 7efd2d4a44
chore(argo): Fix service name in argo/templates/NOTES.txt (#701)
Signed-off-by: Ryan Lo <lowc1012@gmail.com>
2021-04-27 20:33:31 +02:00

16 lines
658 B
Text

1. Get Argo Server external IP/domain by running:
kubectl --namespace {{ .Release.Namespace }} get services -o wide | grep {{ .Release.Name }}-{{ .Values.server.name }}
2. Submit the hello-world workflow by running:
argo submit https://raw.githubusercontent.com/argoproj/argo/master/examples/hello-world.yaml --watch
{{ 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 --namespace {{ .Release.Namespace }} get services -o wide | grep {{ .Release.Name }}-minio
{{ end }}