Add CronWorkflow CRD
This commit is contained in:
parent
d5dec323a8
commit
d100bba9db
3 changed files with 22 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: "v2.4.3"
|
appVersion: "v2.5.0-rc8"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.6.5
|
version: 0.6.6
|
||||||
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:
|
||||||
|
|
19
charts/argo/templates/cronworkflow-crd.yaml
Normal file
19
charts/argo/templates/cronworkflow-crd.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{{- if .Values.installCRD }}
|
||||||
|
apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
|
kind: CustomResourceDefinition
|
||||||
|
metadata:
|
||||||
|
name: cronworkflows.argoproj.io
|
||||||
|
annotations:
|
||||||
|
helm.sh/hook: crd-install
|
||||||
|
helm.sh/hook-delete-policy: before-hook-creation
|
||||||
|
spec:
|
||||||
|
group: argoproj.io
|
||||||
|
version: v1alpha1
|
||||||
|
scope: Namespaced
|
||||||
|
names:
|
||||||
|
kind: CronWorkflow
|
||||||
|
plural: cronworkflows
|
||||||
|
shortNames:
|
||||||
|
- cronwf
|
||||||
|
- cwf
|
||||||
|
{{- end }}
|
|
@ -4,7 +4,7 @@ images:
|
||||||
ui: argoui
|
ui: argoui
|
||||||
executor: argoexec
|
executor: argoexec
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
tag: v2.4.3
|
tag: v2.5.0-rc8
|
||||||
|
|
||||||
crdVersion: v1alpha1
|
crdVersion: v1alpha1
|
||||||
installCRD: true
|
installCRD: true
|
||||||
|
|
Loading…
Reference in a new issue