-
Notifications
You must be signed in to change notification settings - Fork 803
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
[helm-chart] csi-snapshotter in ebs-csi-controller now checks for enableVolumeSnapshot before including it in containers #960
[helm-chart] csi-snapshotter in ebs-csi-controller now checks for enableVolumeSnapshot before including it in containers #960
Conversation
Hi @missingcharacter. 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. |
This doesn't fully fix the issue because we might have users who already have the controller and CRDs installed, so they set enableVolumeSnapshot false. In that case they DO want the sidecar still running. TBH I'm leaning heavily toward not installing the snapshot controller and CRDS at all : ( #635 (comment), let me know your thoughts. |
/ok-to-test |
This makes total sense, I think it is best to NOT install the controller nor CRDs and just list them as pre-requisites |
Yeah my full reasoning is in the comment, @krmichel if we want to stop installing the CRDs and snapshot controller, and instead point users to docs to how to install it (leveraging the help text that prints right after an install) do we need to bump the helm chart major version? |
Yes, please 🙇🏽♂️ (I know you are not asking me) |
OK. I'm actually prepping helm chart 1.2.4 with your previous PR right now. So that will leave the 1.x.x series of charts in an okay-ish state (if you set enableVolumeSnapshot true it will install everything you need, if it's false then you might run into #942) So, after 1.2.4 is released we can take some time to make any other breaking changes we want. (EFS repo made a 2.0.0 release recently as well , so I am not worried at all about making a new major version too fast or whatever.) |
Actually, I think I can add a |
…bleVolumeSnapshot before including it in containers
I fully agree. I already have the second half of the major chart update that needs to do things like getting rid of the old not well-organized values and bump the helm version requirement so I will try to get those done and in PR so we can roll them into 2.0 as well. |
Ok, this PR should leave |
/lgtm I'll rebase on this / include it in #959 |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: missingcharacter, wongma7 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 |
Is this a bug fix or adding new feature?
bug fix
What is this PR about? / Why do we need it?
Fixes #942
What testing is done?
locally, yes