-
Notifications
You must be signed in to change notification settings - Fork 896
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
[ingress] allow api-version spec #483
Conversation
tony-kerz
commented
Mar 30, 2021
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.
Hi @tony-kerz, thanks for the contribution!
Can you help me understand why this change is being introduced? We don't offer api version configurables on any other objects so I'm curious what issues you are running into?
Additionally for any PR with configurables to be merged, there must be unit test coverage. You can find the bats unit tests in test/unit
, but please hold off until we understand the scope of this change more.
hi @jasonodonnell, sure, yeah, the helm chart won't install on k8s v1.19.x, see this issue, is that sufficient motivation? best, |
Hi @tony-kerz, thanks for pointing me to that issue. I've now linked it to this PR. I'm very hesitant to allow users to configure this on their own. Instead I'm thinking this should use Thoughts? |
the capabilities lookup is cool, but u can see how it fell short this time around and now the chart is unusable in certain contexts until a new version is released. i've been bitten by the shifting api version situation numerous times in the past, and custom forks are always an extra hassle, so i might endorse a belt-and-suspenders approach which uses a "case" type thing with all known versions at a point in time, but also allows an override to keep the chart in play during periods of change. |
@tony-kerz, I'm fine with a switch case. Would you mind updating the PR to support it? |
sure, will do, thanks jason! on a side note, i tried to run the any thoughts on cutting over to the go portable |
thx for looking at this @jasonodonnell i think #498 should be fine for this, let's just focus on merging that ;) |