fix(argo): bump template CRDs and add in worklfow-event-binding-crd

This commit is contained in:
William-Gleich 2020-10-12 10:32:56 -06:00
parent 9ed4650b9f
commit dc42ae088e
6 changed files with 52 additions and 3 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v2.11.3 appVersion: v2.11.3
description: A Helm chart for Argo Workflows description: A Helm chart for Argo Workflows
name: argo name: argo
version: 0.13.0 version: 0.13.1
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
maintainers: maintainers:

View file

@ -12,8 +12,14 @@ spec:
scope: Cluster scope: Cluster
names: names:
kind: ClusterWorkflowTemplate kind: ClusterWorkflowTemplate
listKind: ClusterWorkflowTemplateList
plural: clusterworkflowtemplates plural: clusterworkflowtemplates
shortNames: shortNames:
- clusterwftmpl - clusterwftmpl
- cwft - cwft
singular: clusterworkflowtemplate
versions:
- name: v1alpha1
served: true
storage: true
{{- end }} {{- end }}

View file

@ -10,10 +10,16 @@ spec:
group: argoproj.io group: argoproj.io
names: names:
kind: CronWorkflow kind: CronWorkflow
listKind: CronWorkflowList
plural: cronworkflows plural: cronworkflows
shortNames: shortNames:
- cronwf
- cwf - cwf
- cronwf
singular: cronworkflow
scope: Namespaced scope: Namespaced
version: v1alpha1 version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
{{- end }} {{- end }}

View file

@ -20,9 +20,16 @@ spec:
group: argoproj.io group: argoproj.io
names: names:
kind: Workflow kind: Workflow
listKind: WorkflowList
plural: workflows plural: workflows
shortNames: shortNames:
- wf - wf
singular: workflow
scope: Namespaced scope: Namespaced
subresources: {}
version: v1alpha1 version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
{{- end }} {{- end }}

View file

@ -0,0 +1,24 @@
{{- if .Values.installCRD }}
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: workfloweventbindings.argoproj.io
annotations:
helm.sh/hook: crd-install
helm.sh/hook-delete-policy: before-hook-creation
spec:
group: argoproj.io
names:
kind: WorkflowEventBinding
listKind: WorkflowEventBindingList
plural: workfloweventbindings
shortNames:
- wfeb
singular: workfloweventbinding
scope: Namespaced
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
{{- end }}

View file

@ -12,7 +12,13 @@ spec:
scope: Namespaced scope: Namespaced
names: names:
kind: WorkflowTemplate kind: WorkflowTemplate
listKind: WorkflowTemplateList
plural: workflowtemplates plural: workflowtemplates
shortNames: shortNames:
- wftmpl - wftmpl
singular: workflowtemplate
versions:
- name: v1alpha1
served: true
storage: true
{{- end }} {{- end }}