2019-10-29 00:45:55 +01:00
|
|
|
{{- if .Values.installCRD }}
|
2018-11-29 15:16:59 -08:00
|
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
|
|
|
kind: CustomResourceDefinition
|
|
|
|
|
metadata:
|
|
|
|
|
name: workflows.argoproj.io
|
|
|
|
|
annotations:
|
|
|
|
|
helm.sh/hook: crd-install
|
2019-04-16 13:20:40 -05:00
|
|
|
helm.sh/hook-delete-policy: before-hook-creation
|
2018-11-29 15:16:59 -08:00
|
|
|
spec:
|
2020-03-07 18:08:28 +01:00
|
|
|
additionalPrinterColumns:
|
|
|
|
|
- JSONPath: .status.phase
|
|
|
|
|
description: Status of the workflow
|
|
|
|
|
name: Status
|
|
|
|
|
type: string
|
|
|
|
|
- JSONPath: .status.startedAt
|
|
|
|
|
description: When the workflow was started
|
|
|
|
|
format: date-time
|
|
|
|
|
name: Age
|
|
|
|
|
type: date
|
2018-11-29 15:16:59 -08:00
|
|
|
group: argoproj.io
|
|
|
|
|
names:
|
|
|
|
|
kind: Workflow
|
|
|
|
|
plural: workflows
|
|
|
|
|
shortNames:
|
|
|
|
|
- wf
|
2020-03-07 18:08:28 +01:00
|
|
|
scope: Namespaced
|
|
|
|
|
version: v1alpha1
|
2019-10-22 10:10:13 -06:00
|
|
|
{{- end }}
|