12345678910111213141516171819202122232425262728 |
- ---
- apiVersion: apiextensions.k8s.io/v1beta1
- kind: CustomResourceDefinition
- metadata:
- name: jobstates.automationbroker.io
- spec:
- group: automationbroker.io
- version: v1
- scope: Namespaced
- names:
- plural: jobstates
- singular: jobstate
- kind: JobState
- validation:
- # openAPIV3Schema is the schema for validating custom objects.
- # Token is the name of the resource
- openAPIV3Schema:
- properties:
- state:
- type: string
- podName:
- type: string
- method:
- type: string
- error:
- type: string
- description:
- type: string
|