volcano.sh/volcano@v1.9.0/installer/helm/chart/volcano/crd/bases/bus.volcano.sh_commands.yaml (about) 1 apiVersion: apiextensions.k8s.io/v1 2 kind: CustomResourceDefinition 3 metadata: 4 annotations: 5 controller-gen.kubebuilder.io/version: v0.6.0 6 creationTimestamp: null 7 name: commands.bus.volcano.sh 8 spec: 9 group: bus.volcano.sh 10 names: 11 kind: Command 12 listKind: CommandList 13 plural: commands 14 singular: command 15 scope: Namespaced 16 versions: 17 - name: v1alpha1 18 schema: 19 openAPIV3Schema: 20 description: Command defines command structure. 21 properties: 22 action: 23 description: Action defines the action that will be took to the target 24 object. 25 type: string 26 apiVersion: 27 description: 'APIVersion defines the versioned schema of this representation 28 of an object. Servers should convert recognized schemas to the latest 29 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' 30 type: string 31 kind: 32 description: 'Kind is a string value representing the REST resource this 33 object represents. Servers may infer this from the endpoint the client 34 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' 35 type: string 36 message: 37 description: Human-readable message indicating details of this command. 38 type: string 39 metadata: 40 type: object 41 reason: 42 description: Unique, one-word, CamelCase reason for this command. 43 type: string 44 target: 45 description: TargetObject defines the target object of this command. 46 properties: 47 apiVersion: 48 description: API version of the referent. 49 type: string 50 blockOwnerDeletion: 51 description: If true, AND if the owner has the "foregroundDeletion" 52 finalizer, then the owner cannot be deleted from the key-value store 53 until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion 54 for how the garbage collector interacts with this field and enforces 55 the foreground deletion. Defaults to false. To set this field, a 56 user needs "delete" permission of the owner, otherwise 422 (Unprocessable 57 Entity) will be returned. 58 type: boolean 59 controller: 60 description: If true, this reference points to the managing controller. 61 type: boolean 62 kind: 63 description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' 64 type: string 65 name: 66 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names' 67 type: string 68 uid: 69 description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids' 70 type: string 71 required: 72 - apiVersion 73 - kind 74 - name 75 - uid 76 type: object 77 type: object 78 served: true 79 storage: true 80 status: 81 acceptedNames: 82 kind: "" 83 plural: "" 84 conditions: [] 85 storedVersions: []