
Signed-off-by: kostas-theo <ktheo@oneconcern.com> Co-authored-by: Vlad Losev <vladlosev@users.noreply.github.com>
50 lines
1.2 KiB
YAML
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: {}
|