-
Notifications
You must be signed in to change notification settings - Fork 39.7k
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
Move configurable fsgroup to GA #105885
Move configurable fsgroup to GA #105885
Conversation
/kind feature |
Can you add a release note indicating that the metric name is changing? Do we have any e2e tests that the metric would need to update? |
pkg/features/kube_features.go
Outdated
@@ -816,7 +817,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS | |||
InTreePluginvSphereUnregister: {Default: false, PreRelease: featuregate.Alpha}, | |||
CSIMigrationOpenStack: {Default: true, PreRelease: featuregate.Beta}, | |||
InTreePluginOpenStackUnregister: {Default: false, PreRelease: featuregate.Alpha}, | |||
ConfigurableFSGroupPolicy: {Default: true, PreRelease: featuregate.Beta}, | |||
ConfigurableFSGroupPolicy: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.24 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be removed in 1.25 according to deprecation policy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
/assign |
7781836
to
9d9c300
Compare
@msau42 updated release note. Also no, I don't think there are any e2e that depend on that metric. |
/lgtm |
/assign @thockin |
I sitll see references to this gate in pkg/api/pod/util.go pkg/volume/volume_linux.go pkg/volume/volume_linux_test.go |
@thockin I thought until feature gate is really removed, some of the tests/code can carry featuregate references? Not trying to use as an excuse but I saw similar examples elsewhere (i.e feature is being GAed but has some references in code). |
Generally GA means to remove gated code |
Thanks! /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: gnufied, msau42, thockin The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Move configurable fsgroup feature to GA.
Also rename metric that reports time taken to change permissions - #104717
xref kubernetes/enhancements#695
cc @msau42 @mattcary
/sig storage