You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: NodeBucket is the Schema for the samples API
36
36
properties:
37
37
apiVersion:
38
-
description: 'APIVersion defines the versioned schema of this representation
39
-
of an object. Servers should convert recognized schemas to the latest
40
-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
38
+
description: |-
39
+
APIVersion defines the versioned schema of this representation of an object.
40
+
Servers should convert recognized schemas to the latest internal value, and
41
+
may reject unrecognized values.
42
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
41
43
type: string
42
44
kind:
43
-
description: 'Kind is a string value representing the REST resource this
44
-
object represents. Servers may infer this from the endpoint the client
45
-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
45
+
description: |-
46
+
Kind is a string value representing the REST resource this object represents.
47
+
Servers may infer this from the endpoint the client submits requests to.
48
+
Cannot be updated.
49
+
In CamelCase.
50
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
description: NodePool is the Schema for the nodepools API
41
41
properties:
42
42
apiVersion:
43
-
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'
43
+
description: |-
44
+
APIVersion defines the versioned schema of this representation of an object.
45
+
Servers should convert recognized schemas to the latest internal value, and
46
+
may reject unrecognized values.
47
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
44
48
type: string
45
49
kind:
46
-
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'
50
+
description: |-
51
+
Kind is a string value representing the REST resource this object represents.
52
+
Servers may infer this from the endpoint the client submits requests to.
53
+
Cannot be updated.
54
+
In CamelCase.
55
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
47
56
type: string
48
57
metadata:
49
58
type: object
@@ -53,29 +62,41 @@ spec:
53
62
annotations:
54
63
additionalProperties:
55
64
type: string
56
-
description: 'If specified, the Annotations will be added to all nodes. NOTE: existing labels with samy keys on the nodes will be overwritten.'
65
+
description: |-
66
+
If specified, the Annotations will be added to all nodes.
67
+
NOTE: existing labels with samy keys on the nodes will be overwritten.
57
68
type: object
58
69
labels:
59
70
additionalProperties:
60
71
type: string
61
-
description: 'If specified, the Labels will be added to all nodes. NOTE: existing labels with samy keys on the nodes will be overwritten.'
72
+
description: |-
73
+
If specified, the Labels will be added to all nodes.
74
+
NOTE: existing labels with samy keys on the nodes will be overwritten.
62
75
type: object
63
76
selector:
64
77
description: A label query over nodes to consider for adding to the pool
65
78
properties:
66
79
matchExpressions:
67
80
description: matchExpressions is a list of label selector requirements. The requirements are ANDed.
68
81
items:
69
-
description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
82
+
description: |-
83
+
A label selector requirement is a selector that contains values, a key, and an operator that
84
+
relates the key and values.
70
85
properties:
71
86
key:
72
87
description: key is the label key that the selector applies to.
73
88
type: string
74
89
operator:
75
-
description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
90
+
description: |-
91
+
operator represents a key's relationship to a set of values.
92
+
Valid operators are In, NotIn, Exists and DoesNotExist.
76
93
type: string
77
94
values:
78
-
description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
95
+
description: |-
96
+
values is an array of string values. If the operator is In or NotIn,
97
+
the values array must be non-empty. If the operator is Exists or DoesNotExist,
98
+
the values array must be empty. This array is replaced during a strategic
99
+
merge patch.
79
100
items:
80
101
type: string
81
102
type: array
@@ -87,23 +108,33 @@ spec:
87
108
matchLabels:
88
109
additionalProperties:
89
110
type: string
90
-
description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
111
+
description: |-
112
+
matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
113
+
map is equivalent to an element of matchExpressions, whose key field is "key", the
114
+
operator is "In", and the values array contains only "value". The requirements are ANDed.
91
115
type: object
92
116
type: object
93
117
x-kubernetes-map-type: atomic
94
118
taints:
95
119
description: If specified, the Taints will be added to all nodes.
96
120
items:
97
-
description: The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.
121
+
description: |-
122
+
The node this Taint is attached to has the "effect" on
123
+
any pod that does not tolerate the Taint.
98
124
properties:
99
125
effect:
100
-
description: Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
126
+
description: |-
127
+
Required. The effect of the taint on pods
128
+
that do not tolerate the taint.
129
+
Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
101
130
type: string
102
131
key:
103
132
description: Required. The taint key to be applied to a node.
104
133
type: string
105
134
timeAdded:
106
-
description: TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.
135
+
description: |-
136
+
TimeAdded represents the time at which the taint was added.
137
+
It is only written for NoExecute taints.
107
138
format: date-time
108
139
type: string
109
140
value:
@@ -161,10 +192,19 @@ spec:
161
192
description: NodePool is the Schema for the nodepools API
162
193
properties:
163
194
apiVersion:
164
-
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'
195
+
description: |-
196
+
APIVersion defines the versioned schema of this representation of an object.
197
+
Servers should convert recognized schemas to the latest internal value, and
198
+
may reject unrecognized values.
199
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
165
200
type: string
166
201
kind:
167
-
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'
202
+
description: |-
203
+
Kind is a string value representing the REST resource this object represents.
204
+
Servers may infer this from the endpoint the client submits requests to.
205
+
Cannot be updated.
206
+
In CamelCase.
207
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
168
208
type: string
169
209
metadata:
170
210
type: object
@@ -174,29 +214,44 @@ spec:
174
214
annotations:
175
215
additionalProperties:
176
216
type: string
177
-
description: 'If specified, the Annotations will be added to all nodes. NOTE: existing labels with samy keys on the nodes will be overwritten.'
217
+
description: |-
218
+
If specified, the Annotations will be added to all nodes.
219
+
NOTE: existing labels with samy keys on the nodes will be overwritten.
178
220
type: object
179
221
hostNetwork:
180
-
description: HostNetwork is used to specify that cni components(like flannel) will not be installed on the nodes of this NodePool. This means all pods on the nodes of this NodePool will use HostNetwork and share network namespace with host machine.
222
+
description: |-
223
+
HostNetwork is used to specify that cni components(like flannel)
224
+
will not be installed on the nodes of this NodePool.
225
+
This means all pods on the nodes of this NodePool will use
226
+
HostNetwork and share network namespace with host machine.
181
227
type: boolean
182
228
labels:
183
229
additionalProperties:
184
230
type: string
185
-
description: 'If specified, the Labels will be added to all nodes. NOTE: existing labels with samy keys on the nodes will be overwritten.'
231
+
description: |-
232
+
If specified, the Labels will be added to all nodes.
233
+
NOTE: existing labels with samy keys on the nodes will be overwritten.
186
234
type: object
187
235
taints:
188
236
description: If specified, the Taints will be added to all nodes.
189
237
items:
190
-
description: The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.
238
+
description: |-
239
+
The node this Taint is attached to has the "effect" on
240
+
any pod that does not tolerate the Taint.
191
241
properties:
192
242
effect:
193
-
description: Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
243
+
description: |-
244
+
Required. The effect of the taint on pods
245
+
that do not tolerate the taint.
246
+
Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
194
247
type: string
195
248
key:
196
249
description: Required. The taint key to be applied to a node.
197
250
type: string
198
251
timeAdded:
199
-
description: TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.
252
+
description: |-
253
+
TimeAdded represents the time at which the taint was added.
0 commit comments