From a66cb353d47fbb1b61bd304e469abe43f06c3cd1 Mon Sep 17 00:00:00 2001 From: Michael Taufen Date: Mon, 3 Jun 2019 15:39:52 -0700 Subject: [PATCH] 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. --- cluster/gce/util.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cluster/gce/util.sh b/cluster/gce/util.sh index 7983467f14..815efd390b 100755 --- a/cluster/gce/util.sh +++ b/cluster/gce/util.sh @@ -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}" }