-
Notifications
You must be signed in to change notification settings - Fork 183
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
Change the minimum version for using autoscaling/v2 api to 1.23 #3155
Change the minimum version for using autoscaling/v2 api to 1.23 #3155
Conversation
Why is it needed if the issue is with k8s |
From the issue, it sounds like you run into trouble if you have the Chart installed on a lower version (and therefore are using the deprecated api group), and then upgrade to 1.26, where that api group was removed. Kubernetes itself has no issue with this, and in fact will internally convert to the latest supported api group, but Helm itself won't, and reports an issue with the existing manifests - even if the upgrade would, in fact, fix the problem. |
Then it's better to check for |
Co-authored-by: Dominik Rosiek <58699848+sumo-drosiek@users.noreply.github.com>
That's what this PR does, right? |
This addresses issue #3154
Checklist