Merge pull request #91863 from knabben/kubelet-memcg-notification

Moving Kubelet kernel-memgc-notification to configuration file
This commit is contained in:
Kubernetes Prow Robot
2020-06-25 00:20:37 -07:00
committed by GitHub
11 changed files with 40 additions and 27 deletions

View File

@@ -786,6 +786,13 @@ type KubeletConfiguration struct {
// Default: ""
// +optional
ProviderID string `json:"providerID,omitempty"`
// kernelMemcgNotification, if set, the kubelet will integrate with the kernel memcg notification
// to determine if memory eviction thresholds are crossed rather than polling.
// Dynamic Kubelet Config (beta): If dynamically updating this field, consider that
// it may impact the way Kubelet interacts with the kernel.
// Default: false
// +optional
KernelMemcgNotification bool `json:"kernelMemcgNotification,omitempty"`
}
type KubeletAuthorizationMode string