argocd-helm/charts/argo-workflows/crds/argoproj.io_workflows.yaml
kostas-theo 4e739561c0
fix: pod status pending issue (#837)
Signed-off-by: kostas-theo <ktheo@oneconcern.com>

Co-authored-by: Vlad Losev <vladlosev@users.noreply.github.com>
2021-07-20 14:51:02 -07:00

50 lines
1.2 KiB
YAML

apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: workflows.argoproj.io
spec:
group: argoproj.io
names:
kind: Workflow
listKind: WorkflowList
plural: workflows
shortNames:
- wf
singular: workflow
scope: Namespaced
versions:
- additionalPrinterColumns:
- description: Status of the workflow
jsonPath: .status.phase
name: Status
type: string
- description: When the workflow was started
format: date-time
jsonPath: .status.startedAt
name: Age
type: date
name: v1alpha1
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
type: object
x-kubernetes-preserve-unknown-fields: true
x-kubernetes-map-type: atomic
status:
type: object
x-kubernetes-preserve-unknown-fields: true
x-kubernetes-map-type: atomic
required:
- metadata
- spec
type: object
served: true
storage: true
subresources: {}