From 6b38de5607610017bafdaa23fc91f382d673e06f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Hau=C3=9Fknecht?= Date: Fri, 15 Oct 2021 11:13:47 +0200 Subject: [PATCH] feat(argo-workflows): Add WorkflowTaskSet to CRD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Louis Haußknecht --- charts/argo-workflows/Chart.yaml | 1 + .../crds/argoproj.io_workflowtasksets.yaml | 39 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 charts/argo-workflows/crds/argoproj.io_workflowtasksets.yaml diff --git a/charts/argo-workflows/Chart.yaml b/charts/argo-workflows/Chart.yaml index 09605184..5ff9de8f 100644 --- a/charts/argo-workflows/Chart.yaml +++ b/charts/argo-workflows/Chart.yaml @@ -16,3 +16,4 @@ maintainers: annotations: artifacthub.io/changes: | - "[Changed]: Bump appVersion to 3.2.0" + - "[Added]: WorkflowTaskSet CRD" diff --git a/charts/argo-workflows/crds/argoproj.io_workflowtasksets.yaml b/charts/argo-workflows/crds/argoproj.io_workflowtasksets.yaml new file mode 100644 index 00000000..a0c651c5 --- /dev/null +++ b/charts/argo-workflows/crds/argoproj.io_workflowtasksets.yaml @@ -0,0 +1,39 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: workflowtasksets.argoproj.io +spec: + group: argoproj.io + names: + kind: WorkflowTaskSet + listKind: WorkflowTaskSetList + plural: workflowtasksets + shortNames: + - wfts + singular: workflowtaskset + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + status: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true \ No newline at end of file