From 2b9afc180d24ab84fd65f5f312838084061efb0b Mon Sep 17 00:00:00 2001 From: Lukasz Lempart Date: Thu, 15 Mar 2018 13:01:15 -0700 Subject: [PATCH] Add workflow CRD definition to argo chart **Why** The workflow CRD must exist in order for argo to function --- charts/argo/templates/workflow-crd.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 charts/argo/templates/workflow-crd.yaml diff --git a/charts/argo/templates/workflow-crd.yaml b/charts/argo/templates/workflow-crd.yaml new file mode 100644 index 00000000..aaf95780 --- /dev/null +++ b/charts/argo/templates/workflow-crd.yaml @@ -0,0 +1,13 @@ +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: workflows.argoproj.io +spec: + group: argoproj.io + names: + kind: Workflow + plural: workflows + shortNames: + - wf + scope: Namespaced + version: v1alpha1 \ No newline at end of file