-
Notifications
You must be signed in to change notification settings - Fork 39.9k
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
Beta upgrade for feature gate VolumeSubpathEnvExpansion #76546
Beta upgrade for feature gate VolumeSubpathEnvExpansion #76546
Conversation
Hi @kevtaylor. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
This PR may require API review. If so, when the changes are ready, complete the pre-review checklist and request an API review. Status of requested reviews is tracked in the API Review project. |
/sig node |
/ok-to-test |
/test pull-kubernetes-verify |
I think its asking you to run |
@mattjmcnaughton I ran |
b000e22
to
6ff8308
Compare
@msau42 Please can you advise whether I should have changed the NodeAlphaFeature to NodeFeature? And also, whether there are any changes required to test-infra to test the beta feature |
test/e2e/common/expansion.go
Outdated
@@ -157,7 +157,7 @@ var _ = framework.KubeDescribe("Variable Expansion", func() { | |||
Description: Make sure a container's subpath can be set using an | |||
expansion of environment variables. | |||
*/ | |||
It("should allow substituting values in a volume subpath [Feature:VolumeSubpathEnvExpansion][NodeAlphaFeature:VolumeSubpathEnvExpansion]", func() { | |||
It("should allow substituting values in a volume subpath [Feature:VolumeSubpathEnvExpansion]", func() { |
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.
once a feature is enabled by default, do we drop the [Feature:...]
tag?
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.
that would actually exercise the feature by default in CI
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.
Yup, let's drop [Feature:VolumeSubpathEnvExpansion]
too so that it will run by default
feature gate and API doc changes lgtm |
6ff8308
to
6c56428
Compare
@liggitt Removed the Feature annotation and I can now see some activity in |
Can you add [sig-storage] tag to the test cases? Then we can run it as part of the |
6c56428
to
59054c9
Compare
/test pull-kubernetes-e2e-gce-storage-slow |
/retest |
/test pull-kubernetes-e2e-gce-storage-slow |
I think pull node e2e jobs only run node conformance tests. We can get this to run in node CI jobs though by adding a "[NodeFeature:SubpathExpansion]" tag. |
59054c9
to
bb5b4ad
Compare
/test pull-kubernetes-e2e-gce-storage-slow |
2 similar comments
/test pull-kubernetes-e2e-gce-storage-slow |
/test pull-kubernetes-e2e-gce-storage-slow |
@kevtaylor: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
fyi, i'm increasing the timeout of the pull job here: kubernetes/test-infra#12242 |
/retest |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: kevtaylor, liggitt, msau42 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 |
/kind api-change
What this PR does / why we need it:
Promotes VolumeSubpathEnvExpansion feature gate to beta state
Which issue(s) this PR fixes:
Fixes #64604
Related to feature: kubernetes/enhancements#559
Special notes for your reviewer:
As far as I am aware, the alpha testing was comprehensive, so no new tests have been introduced and
no extras envisaged unless some additional edge cases are identified.
The alpha suites have been executing without issue alongside node tests in alpha state.