Merge pull request #78668 from mtaufen/disable-kubeletpodresources

Disable KubeletPodResources on Windows
k3s-v1.15.3
Kubernetes Prow Robot 2019-06-04 14:34:03 -07:00 committed by GitHub
commit 3cd41a5a0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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}"
}