Merge pull request #131527 from carlory/cleanup-kubelet-UserNamespaces

Fix incorrect  feature gate name UserNamespaceSupport for kubelet apis
This commit is contained in:
Kubernetes Prow Robot
2025-04-29 09:18:17 -07:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -540,7 +540,7 @@ type KubeletConfiguration struct {
CrashLoopBackOff CrashLoopBackOffConfig
// UserNamespaces contains User Namespace configurations.
// +featureGate=UserNamespaceSupport
// +featureGate=UserNamespacesSupport
// +optional
UserNamespaces *UserNamespaces
}
@@ -893,7 +893,7 @@ type UserNamespaces struct {
// Changing the value may require recreating all containers on the node.
//
// Default: 65536
// +featureGate=UserNamespaceSupport
// +featureGate=UserNamespacesSupport
// +optional
IDsPerPod *int64
}

View File

@@ -923,7 +923,7 @@ type KubeletConfiguration struct {
FailCgroupV1 *bool `json:"failCgroupV1,omitempty"`
// UserNamespaces contains User Namespace configurations.
// +featureGate=UserNamespaceSupport
// +featureGate=UserNamespacesSupport
// +optional
UserNamespaces *UserNamespaces `json:"userNamespaces,omitempty"`
}
@@ -1131,7 +1131,7 @@ type UserNamespaces struct {
// Changing the value may require recreating all containers on the node.
//
// Default: 65536
// +featureGate=UserNamespaceSupport
// +featureGate=UserNamespacesSupport
// +optional
IDsPerPod *int64 `json:"idsPerPod,omitempty"`
}