Skip to content

KEP-5307: Correct typo in feature gate name #5442

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions keps/sig-node/5307-container-restart-policy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ type ContainerRestartPolicy string
const (
ContainerRestartPolicyAlways ContainerRestartPolicy = "Always"
ContainerRestartPolicyNever ContainerRestartPolicy = "Never"
ContainerRestartPolicyOnFailure ContainerRestartPolicyOnFailure = "OnFailure"
ContainerRestartPolicyOnFailure ContainerRestartPolicy = "OnFailure"
)

type Container struct {
Expand Down Expand Up @@ -774,7 +774,7 @@ well as the [existing list] of feature gates.
-->

- [x] Feature gate (also fill in values in `kep.yaml`)
- Feature gate name: ContainerRestartPolicy
- Feature gate name: ContainerRestartRules
- Components depending on the feature gate: kubelet, kube-apiserver

###### Does enabling the feature change any default behavior?
Expand Down
2 changes: 1 addition & 1 deletion keps/sig-node/5307-container-restart-policy/kep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ milestone:
# The following PRR answers are required at alpha release
# List the feature gate name and the components for which it must be enabled
feature-gates:
- name: ContainerRestartPolicy
- name: ContainerRestartRules
components:
- kubelet
- kube-apiserver
Expand Down