...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 labels:
5 addonmanager.kubernetes.io/mode: Reconcile
6 name: clusterinformations.crd.projectcalico.org
7spec:
8 group: crd.projectcalico.org
9 names:
10 kind: ClusterInformation
11 listKind: ClusterInformationList
12 plural: clusterinformations
13 singular: clusterinformation
14 scope: Cluster
15 versions:
16 - name: v1
17 schema:
18 openAPIV3Schema:
19 description: ClusterInformation contains the cluster specific information.
20 properties:
21 apiVersion:
22 description: 'APIVersion defines the versioned schema of this representation
23 of an object. Servers should convert recognized schemas to the latest
24 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
25 type: string
26 kind:
27 description: 'Kind is a string value representing the REST resource this
28 object represents. Servers may infer this from the endpoint the client
29 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30 type: string
31 metadata:
32 type: object
33 spec:
34 description: ClusterInformationSpec contains the values of describing
35 the cluster.
36 properties:
37 calicoVersion:
38 description: CalicoVersion is the version of Calico that the cluster
39 is running
40 type: string
41 clusterGUID:
42 description: ClusterGUID is the GUID of the cluster
43 type: string
44 clusterType:
45 description: ClusterType describes the type of the cluster
46 type: string
47 datastoreReady:
48 description: DatastoreReady is used during significant datastore migrations
49 to signal to components such as Felix that it should wait before
50 accessing the datastore.
51 type: boolean
52 variant:
53 description: Variant declares which variant of Calico should be active.
54 type: string
55 type: object
56 type: object
57 served: true
58 storage: true
59status:
60 acceptedNames:
61 kind: ""
62 plural: ""
63 conditions: []
64 storedVersions: []
View as plain text