-
Notifications
You must be signed in to change notification settings - Fork 4k
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 limits setting balancing-ignore-label flag to a single label #3673
Comments
Hi @sbuzonas, Thanks for raising this issue and proposing a solution for it. What you're proposing sounds like a reasonable approach to me, keeping the complexity of the arrays only where they're needed. If you want to raise a PR to add this functionality I'd be more than happy to give it a review. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-contributor-experience at kubernetes/community. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-contributor-experience at kubernetes/community. |
Rotten issues close after 30d of inactivity. Send feedback to sig-contributor-experience at kubernetes/community. |
@fejta-bot: Closing this issue. In response to this:
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. |
Could this issue get re-opened as it's a pretty major defect in the CA chart considering how many labels need to be ignored by CA to make it actually work? |
/reopen |
@gjtempleton: Reopened this issue. In response to this:
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. |
Thanks @gjtempleton, I'm just writhing a simple PR to solve this. |
No problem, give me a ping once it's ready, and I'll happily review it. Depending on when you raise it, you may need to cherry-pick this commit in as Github actions not running by default for first-time contributors has bitten us. Looking to move to ensure they always run in the SIG meeting this afternoon. |
any chance it will be available in next ~5-10 days? |
@infa-ddeore this has already been merged and released. |
The fix was implemented by this PR. It should be available as of the release of version |
didnt see github |
it adds
binary looks like require
|
@infa-ddeore the chart values explains how this works and the deployment template has the implementation in it. Basically the I can confirm that this is working correctly for me, could you share the values that you're using? |
my bad, i found the problem, my command was using this now looks fine:
which helm repo should we use moving forward, https://charts.helm.sh/stable or https://kubernetes.github.io/autoscaler ? |
The snippet in the chart to set extra arguments is in the format of key=value pairs. For arguments that can be passed multiple times, this limits you to only setting one value.
Switching it from a hash to an array would solve the problem, but would break backwards compatibility and complexity to the existing configuration. I think accepting a separate block of multi use arguments would keep the configuration simple.
The text was updated successfully, but these errors were encountered: