Unverified Commit 3cd41a5a authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #78668 from mtaufen/disable-kubeletpodresources

Disable KubeletPodResources on Windows
parents 304a2b19 a66cb353
...@@ -869,6 +869,10 @@ function construct-windows-kubelet-flags { ...@@ -869,6 +869,10 @@ function construct-windows-kubelet-flags {
# Turn off kernel memory cgroup notification. # Turn off kernel memory cgroup notification.
flags+=" --experimental-kernel-memcg-notification=false" 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}" KUBELET_ARGS="${flags}"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment