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
|
||||
appVersion: "v2.4.3"
|
||||
appVersion: "v2.5.2"
|
||||
description: A Helm chart for Argo Workflows
|
||||
name: argo
|
||||
version: 0.6.8
|
||||
version: 0.7.0
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
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
|
||||
metadata:
|
||||
name: workflows.argoproj.io
|
||||
annotations:
|
||||
helm.sh/hook: crd-install
|
||||
helm.sh/hook-delete-policy: before-hook-creation
|
||||
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
|
||||
version: v1alpha1
|
||||
scope: Namespaced
|
||||
|
|
|
@ -2,9 +2,6 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
|||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: workflowtemplates.argoproj.io
|
||||
annotations:
|
||||
helm.sh/hook: crd-install
|
||||
helm.sh/hook-delete-policy: before-hook-creation
|
||||
spec:
|
||||
group: argoproj.io
|
||||
version: v1alpha1
|
||||
|
|
|
@ -4,9 +4,12 @@ images:
|
|||
ui: argoui
|
||||
executor: argoexec
|
||||
pullPolicy: Always
|
||||
tag: v2.4.3
|
||||
tag: v2.5.2
|
||||
|
||||
crdVersion: v1alpha1
|
||||
|
||||
# Note: For Helm3 this should be set to False
|
||||
# the crds/ folder contains the necessary crds and will install them
|
||||
installCRD: true
|
||||
|
||||
init:
|
||||
|
|
Loading…
Reference in a new issue