Updating argo chart for v2.5
This commit is contained in:
parent
400f141dae
commit
15315b0dd6
5 changed files with 30 additions and 9 deletions
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: "v2.4.3"
|
appVersion: "v2.5.2"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.6.8
|
version: 0.7.0
|
||||||
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:
|
||||||
|
|
14
charts/argo/crds/cronworkflow-crd.yaml
Normal file
14
charts/argo/crds/cronworkflow-crd.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
|
kind: CustomResourceDefinition
|
||||||
|
metadata:
|
||||||
|
name: cronworkflows.argoproj.io
|
||||||
|
spec:
|
||||||
|
group: argoproj.io
|
||||||
|
version: v1alpha1
|
||||||
|
scope: Namespaced
|
||||||
|
names:
|
||||||
|
kind: CronWorkflow
|
||||||
|
plural: cronworkflows
|
||||||
|
shortNames:
|
||||||
|
- cronwf
|
||||||
|
- cwf
|
|
@ -2,10 +2,17 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
name: workflows.argoproj.io
|
name: workflows.argoproj.io
|
||||||
annotations:
|
|
||||||
helm.sh/hook: crd-install
|
|
||||||
helm.sh/hook-delete-policy: before-hook-creation
|
|
||||||
spec:
|
spec:
|
||||||
|
additionalPrinterColumns:
|
||||||
|
- JSONPath: .status.phase
|
||||||
|
description: Status of the workflow
|
||||||
|
name: Status
|
||||||
|
type: string
|
||||||
|
- JSONPath: .status.startedAt
|
||||||
|
description: When the workflow was started
|
||||||
|
name: Age
|
||||||
|
format: date-time
|
||||||
|
type: date
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
version: v1alpha1
|
version: v1alpha1
|
||||||
scope: Namespaced
|
scope: Namespaced
|
||||||
|
|
|
@ -2,9 +2,6 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
name: workflowtemplates.argoproj.io
|
name: workflowtemplates.argoproj.io
|
||||||
annotations:
|
|
||||||
helm.sh/hook: crd-install
|
|
||||||
helm.sh/hook-delete-policy: before-hook-creation
|
|
||||||
spec:
|
spec:
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
version: v1alpha1
|
version: v1alpha1
|
||||||
|
|
|
@ -4,9 +4,12 @@ images:
|
||||||
ui: argoui
|
ui: argoui
|
||||||
executor: argoexec
|
executor: argoexec
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
tag: v2.4.3
|
tag: v2.5.2
|
||||||
|
|
||||||
crdVersion: v1alpha1
|
crdVersion: v1alpha1
|
||||||
|
|
||||||
|
# Note: For Helm3 this should be set to False
|
||||||
|
# the crds/ folder contains the necessary crds and will install them
|
||||||
installCRD: true
|
installCRD: true
|
||||||
|
|
||||||
init:
|
init:
|
||||||
|
|
Loading…
Reference in a new issue