node: topologymgr: remove comments with feature gate references

Signed-off-by: Swati Sehgal <swsehgal@redhat.com>
This commit is contained in:
Swati Sehgal 2023-03-07 09:42:54 +00:00
parent 937d330393
commit ae964a493f
2 changed files with 0 additions and 4 deletions

View File

@ -233,11 +233,9 @@ type KubeletConfiguration struct {
// Requires the MemoryManager feature gate to be enabled. // Requires the MemoryManager feature gate to be enabled.
MemoryManagerPolicy string MemoryManagerPolicy string
// TopologyManagerPolicy is the name of the policy to use. // TopologyManagerPolicy is the name of the policy to use.
// Policies other than "none" require the TopologyManager feature gate to be enabled.
TopologyManagerPolicy string TopologyManagerPolicy string
// TopologyManagerScope represents the scope of topology hint generation // TopologyManagerScope represents the scope of topology hint generation
// that topology manager requests and hint providers generate. // that topology manager requests and hint providers generate.
// "pod" scope requires the TopologyManager feature gate to be enabled.
// Default: "container" // Default: "container"
// +optional // +optional
TopologyManagerScope string TopologyManagerScope string

View File

@ -368,7 +368,6 @@ type KubeletConfiguration struct {
// - `single-numa-node`: kubelet only allows pods with a single NUMA alignment // - `single-numa-node`: kubelet only allows pods with a single NUMA alignment
// of CPU and device resources. // of CPU and device resources.
// //
// Policies other than "none" require the TopologyManager feature gate to be enabled.
// Default: "none" // Default: "none"
// +optional // +optional
TopologyManagerPolicy string `json:"topologyManagerPolicy,omitempty"` TopologyManagerPolicy string `json:"topologyManagerPolicy,omitempty"`
@ -378,7 +377,6 @@ type KubeletConfiguration struct {
// - `container`: topology policy is applied on a per-container basis. // - `container`: topology policy is applied on a per-container basis.
// - `pod`: topology policy is applied on a per-pod basis. // - `pod`: topology policy is applied on a per-pod basis.
// //
// "pod" scope requires the TopologyManager feature gate to be enabled.
// Default: "container" // Default: "container"
// +optional // +optional
TopologyManagerScope string `json:"topologyManagerScope,omitempty"` TopologyManagerScope string `json:"topologyManagerScope,omitempty"`