...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 name: devicestatuses.device-system.edge.ncr.com
5 annotations:
6 controller-gen.kubebuilder.io/version: (unknown)
7spec:
8 group: device-system.edge.ncr.com
9 names:
10 kind: DeviceStatuses
11 listKind: DeviceStatusesList
12 plural: devicestatuses
13 singular: devicestatuses
14 scope: Cluster
15 versions:
16 - name: v1
17 schema:
18 openAPIV3Schema:
19 type: object
20 properties:
21 apiVersion:
22 type: string
23 description: |-
24 APIVersion defines the versioned schema of this representation of an object.
25 Servers should convert recognized schemas to the latest internal value, and
26 may reject unrecognized values.
27 More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
28 kind:
29 type: string
30 description: |-
31 Kind is a string value representing the REST resource this object represents.
32 Servers may infer this from the endpoint the client submits requests to.
33 Cannot be updated.
34 In CamelCase.
35 More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
36 metadata:
37 type: object
38 spec:
39 type: object
40 properties:
41 deviceGroups:
42 type: object
43 additionalProperties:
44 type: array
45 items:
46 type: integer
47 format: int64
48 devices:
49 type: object
50 additionalProperties:
51 type: array
52 items:
53 type: object
54 properties:
55 name:
56 type: string
57 required:
58 - name
59 served: true
60 storage: true
View as plain text