2020-03-07 18:08:28 +01:00
1. Get Argo Server external IP/domain by running:
2018-01-02 16:45:35 -08:00
2020-03-07 18:08:28 +01:00
kubectl --namespace {{ .Release.Namespace }} get services -o wide | grep {{ .Release.Name }}-{{ .Values.server.name }}
2018-01-02 16:45:35 -08:00
2018-11-29 15:16:59 -08:00
2. Submit the hello-world workflow by running:
2018-01-02 16:45:35 -08:00
2018-11-29 15:16:59 -08:00
argo submit https://raw.githubusercontent.com/argoproj/argo/master/examples/hello-world.yaml --watch
2018-01-02 16:45:35 -08:00
2018-06-04 10:39:53 -04:00
{{ if .Values.minio.install }}
2018-01-02 16:45:35 -08:00
2018-06-04 10:39:53 -04:00
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
2018-01-02 16:45:35 -08:00
command:
2018-11-29 17:01:42 -05:00
kubectl --namespace {{ .Release.Namespace }} get services -o wide | grep {{ .Release.Name }}-minio-svc
2018-01-02 16:45:35 -08:00
{{ end }}