-
Notifications
You must be signed in to change notification settings - Fork 812
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
Bump back CSIDriver to beta1 version #888
Conversation
Hi @arcivanov. Thanks for your PR. I'm waiting for a kubernetes-sigs 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. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: arcivanov The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Pull Request Test Coverage Report for Build 1962
💛 - Coveralls |
v1 went GA in 1.18. This chart is >= 1.17. In 1.17 CSIDriver is only available in v1beta1 fixes 887
46ab3a2
to
0f4a72c
Compare
/ok-to-test |
@@ -1,4 +1,4 @@ | |||
apiVersion: storage.k8s.io/v1 | |||
apiVersion: storage.k8s.io/v1beta1 |
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.
As v1beta1 will be deprecated soon(likely 3 months), can you update the apiVersion based on kubeVersion? something like
{{ ternary "storage.k8s.io/v1" "storage.k8s.io/v1beta1" (semverCompare ">=1.19.0-0" .Capabilities.KubeVersion.Version) }}
Also, since this is helm chart change, can you also bump the chart version to 1.0.2?
Hi @arcivanov, we need to patch v1.0 release as well so I will merge the fix on my own and also cherry pick it to v1.0 branch, thanks for your work! |
We have a PR to cleanup helm in #856 which include this fix, I will close this PR |
v1 went GA in 1.18. This chart is >= 1.17.
In 1.17 CSIDriver is only available in v1beta1
fixes #887
Is this a bug fix or adding new feature?
What is this PR about? / Why do we need it?
What testing is done?