mirror of https://github.com/k3s-io/k3s
Disable KubeletPodResources on Windows
The feature caused tests to fail when it was enabled. - https://github.com/kubernetes/kubernetes/issues/78628 Work is in progress to fix the feature, but until that work is complete, we will disable it in the GCE scripts.k3s-v1.15.3
parent
16aeec2485
commit
a66cb353d4
|
@ -869,6 +869,10 @@ function construct-windows-kubelet-flags {
|
|||
# Turn off kernel memory cgroup notification.
|
||||
flags+=" --experimental-kernel-memcg-notification=false"
|
||||
|
||||
# TODO(#78628): Re-enable KubeletPodResources when the issue is fixed.
|
||||
# Force disable KubeletPodResources feature on Windows until #78628 is fixed.
|
||||
flags+=" --feature-gates=KubeletPodResources=false"
|
||||
|
||||
KUBELET_ARGS="${flags}"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue