...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 labels:
5 addonmanager.kubernetes.io/mode: Reconcile
6 name: ipamhandles.crd.projectcalico.org
7spec:
8 group: crd.projectcalico.org
9 names:
10 kind: IPAMHandle
11 listKind: IPAMHandleList
12 plural: ipamhandles
13 singular: ipamhandle
14 scope: Cluster
15 versions:
16 - name: v1
17 schema:
18 openAPIV3Schema:
19 properties:
20 apiVersion:
21 description: 'APIVersion defines the versioned schema of this representation
22 of an object. Servers should convert recognized schemas to the latest
23 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
24 type: string
25 kind:
26 description: 'Kind is a string value representing the REST resource this
27 object represents. Servers may infer this from the endpoint the client
28 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
29 type: string
30 metadata:
31 type: object
32 spec:
33 description: IPAMHandleSpec contains the specification for an IPAMHandle
34 resource.
35 properties:
36 block:
37 additionalProperties:
38 type: integer
39 type: object
40 handleID:
41 type: string
42 required:
43 - block
44 - handleID
45 type: object
46 type: object
47 served: true
48 storage: true
49status:
50 acceptedNames:
51 kind: ""
52 plural: ""
53 conditions: []
54 storedVersions: []
View as plain text