feat(argo-workflows): Add WorkflowTaskSet to CRD

Signed-off-by: Louis Haußknecht <lh@haussknecht.com>
This commit is contained in:
Louis Haußknecht 2021-10-15 11:13:47 +02:00
parent 6ce6bf0aa1
commit 6b38de5607
2 changed files with 40 additions and 0 deletions

View file

@ -16,3 +16,4 @@ maintainers:
annotations:
artifacthub.io/changes: |
- "[Changed]: Bump appVersion to 3.2.0"
- "[Added]: WorkflowTaskSet CRD"

View file

@ -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