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
// extraEnvs is an extra set of environment variables to pass to the control plane component.
207
209
// Environment variables passed using ExtraEnvs will override any existing environment variables, or *_proxy environment variables that kubeadm adds by default.
208
210
// This option takes effect only on Kubernetes >=1.31.0.
209
211
// +optional
212
+
// +listType=atomic
210
213
// +kubebuilder:validation:MaxItems=100
211
214
ExtraEnvs []EnvVar`json:"extraEnvs,omitempty"`
212
215
@@ -236,13 +239,15 @@ type ControllerManager struct {
236
239
237
240
// extraVolumes is an extra set of host volumes, mounted to the control plane component.
// extraEnvs is an extra set of environment variables to pass to the control plane component.
243
247
// Environment variables passed using ExtraEnvs will override any existing environment variables, or *_proxy environment variables that kubeadm adds by default.
244
248
// This option takes effect only on Kubernetes >=1.31.0.
245
249
// +optional
250
+
// +listType=atomic
246
251
// +kubebuilder:validation:MaxItems=100
247
252
ExtraEnvs []EnvVar`json:"extraEnvs,omitempty"`
248
253
}
@@ -264,13 +269,15 @@ type Scheduler struct {
264
269
265
270
// extraVolumes is an extra set of host volumes, mounted to the control plane component.
// extraEnvs is an extra set of environment variables to pass to the control plane component.
271
277
// Environment variables passed using ExtraEnvs will override any existing environment variables, or *_proxy environment variables that kubeadm adds by default.
272
278
// This option takes effect only on Kubernetes >=1.31.0.
273
279
// +optional
280
+
// +listType=atomic
274
281
// +kubebuilder:validation:MaxItems=100
275
282
ExtraEnvs []EnvVar`json:"extraEnvs,omitempty"`
276
283
}
@@ -466,6 +473,7 @@ type LocalEtcd struct {
466
473
// Environment variables passed using ExtraEnvs will override any existing environment variables, or *_proxy environment variables that kubeadm adds by default.
467
474
// This option takes effect only on Kubernetes >=1.31.0.
468
475
// +optional
476
+
// +listType=atomic
469
477
// +kubebuilder:validation:MaxItems=100
470
478
ExtraEnvs []EnvVar`json:"extraEnvs,omitempty"`
471
479
@@ -768,6 +776,7 @@ type KubeConfigAuthExec struct {
768
776
// are unioned with the host's environment, as well as variables client-go uses
0 commit comments