...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 annotations:
5 api-approved.openshift.io: https://github.com/openshift/api/pull/1107
6 include.release.openshift.io/ibm-cloud-managed: "true"
7 include.release.openshift.io/self-managed-high-availability: "true"
8 include.release.openshift.io/single-node-developer: "true"
9 name: nodes.config.openshift.io
10spec:
11 group: config.openshift.io
12 names:
13 kind: Node
14 listKind: NodeList
15 plural: nodes
16 singular: node
17 scope: Cluster
18 versions:
19 - name: v1
20 schema:
21 openAPIV3Schema:
22 description: "Node holds cluster-wide information about node specific features. \n Compatibility level 1: Stable within a major release for a minimum of 12 months or 3 minor releases (whichever is longer)."
23 type: object
24 required:
25 - spec
26 properties:
27 apiVersion:
28 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'
29 type: string
30 kind:
31 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'
32 type: string
33 metadata:
34 type: object
35 spec:
36 description: spec holds user settable values for configuration
37 type: object
38 properties:
39 cgroupMode:
40 description: CgroupMode determines the cgroups version on the node
41 type: string
42 enum:
43 - v1
44 - v2
45 - ""
46 workerLatencyProfile:
47 description: WorkerLatencyProfile determins the how fast the kubelet is updating the status and corresponding reaction of the cluster
48 type: string
49 enum:
50 - Default
51 - MediumUpdateAverageReaction
52 - LowUpdateSlowReaction
53 status:
54 description: status holds observed values.
55 type: object
56 served: true
57 storage: true
58 subresources:
59 status: {}
View as plain text