diff --git a/pkg/kubelet/apis/config/types.go b/pkg/kubelet/apis/config/types.go index 526d89eb6e1..be29dae1fd1 100644 --- a/pkg/kubelet/apis/config/types.go +++ b/pkg/kubelet/apis/config/types.go @@ -233,11 +233,9 @@ type KubeletConfiguration struct { // Requires the MemoryManager feature gate to be enabled. MemoryManagerPolicy string // TopologyManagerPolicy is the name of the policy to use. - // Policies other than "none" require the TopologyManager feature gate to be enabled. TopologyManagerPolicy string // TopologyManagerScope represents the scope of topology hint generation // that topology manager requests and hint providers generate. - // "pod" scope requires the TopologyManager feature gate to be enabled. // Default: "container" // +optional TopologyManagerScope string diff --git a/staging/src/k8s.io/kubelet/config/v1beta1/types.go b/staging/src/k8s.io/kubelet/config/v1beta1/types.go index 0e80321791e..61568288d6e 100644 --- a/staging/src/k8s.io/kubelet/config/v1beta1/types.go +++ b/staging/src/k8s.io/kubelet/config/v1beta1/types.go @@ -368,7 +368,6 @@ type KubeletConfiguration struct { // - `single-numa-node`: kubelet only allows pods with a single NUMA alignment // of CPU and device resources. // - // Policies other than "none" require the TopologyManager feature gate to be enabled. // Default: "none" // +optional TopologyManagerPolicy string `json:"topologyManagerPolicy,omitempty"` @@ -378,7 +377,6 @@ type KubeletConfiguration struct { // - `container`: topology policy is applied on a per-container basis. // - `pod`: topology policy is applied on a per-pod basis. // - // "pod" scope requires the TopologyManager feature gate to be enabled. // Default: "container" // +optional TopologyManagerScope string `json:"topologyManagerScope,omitempty"`