* moved workflow CRD into helpers.tpl * added new values to values.yaml * added UI cluster role and binding * add workflow controller cluster role and binding * added ui service account creator * added workflow controller service account yaml * reformatted values.yaml to group similar items * tweaked files to reflect values.yaml changes * setup minio stuff to match subchart model * changes to reflect minio rework * added README to explain chart a bit * changes made to reflect minio values changes * changes to reflect minio values changes (again) * updating minio to latest version * move the crd definition into it's own tpl file
19 lines
854 B
Text
19 lines
854 B
Text
1. Make sure Workflow CRD is created by running:
|
|
|
|
echo '{"apiVersion": "apiextensions.k8s.io/v1beta1","kind": "CustomResourceDefinition", "metadata": {"name": "workflows.argoproj.io"},
|
|
"spec": {"group": "argoproj.io","names":
|
|
{"kind": "Workflow","listKind": "WorkflowList","plural": "workflows","shortNames": ["wf"],"singular": "workflow"}, "scope": "Namespaced","version": "v1alpha1"}}' \
|
|
| kubectl create -f -
|
|
|
|
2. Get Argo UI external IP/domain by running:
|
|
|
|
kubectl 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
|
|
|
|
{{ end }}
|