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
Michael Taufen 2019-06-03 15:39:52 -07:00
parent 16aeec2485
commit a66cb353d4
1 changed files with 4 additions and 0 deletions

View File

@ -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}"
}