...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 name: actionrequests.edge.ncr.com
5 annotations:
6 controller-gen.kubebuilder.io/version: (unknown)
7spec:
8 group: edge.ncr.com
9 names:
10 kind: ActionRequest
11 listKind: ActionRequestList
12 plural: actionrequests
13 shortNames:
14 - actions
15 - action
16 singular: actionrequest
17 scope: Namespaced
18 versions:
19 - name: v1alpha1
20 schema:
21 openAPIV3Schema:
22 type: object
23 description: ActionRequest is the Schema for the actionrequests API
24 properties:
25 apiVersion:
26 type: string
27 description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
28 kind:
29 type: string
30 description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31 metadata:
32 type: object
33 spec:
34 type: object
35 description: ActionRequestSpec defines the desired state of ActionRequest
36 properties:
37 type:
38 type: string
39 description: ActionType - Action type
40 resource:
41 type: string
42 format: byte
43 required:
44 - resource
45 - type
46 status:
47 type: object
48 description: ActionRequestStatus defines the observed state of ActionRequest
49 properties:
50 error:
51 type: object
52 description: Error contains error information when an error occurs on the agent
53 properties:
54 status:
55 type: string
56 message:
57 type: string
58 served: true
59 storage: true
60 subresources:
61 status: {}
View as plain text