-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
fix: controller option to not watch configmap #12622
fix: controller option to not watch configmap #12622
Conversation
Signed-off-by: Paolo Quadri <paolo.quadri@remote.com>
f795d40
to
05e5c36
Compare
not sure about the failed test, probably a flaky one but i can't retry the action :/ |
I gave it a retry. That was an Executor test, so sounds unrelated, but I'm not sure I've seen that specific test flake before (though some related tests have before |
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.
Took a look at this in more depth now that it passes. Just one small addition to #12400, otherwise LGTM. Thanks for finishing this up!
be more specific on the env var Signed-off-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com>
be more specific on the env var Signed-off-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com>
Signed-off-by: Paolo Quadri <paolo.quadri@remote.com> Signed-off-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Co-authored-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com>
Signed-off-by: Paolo Quadri <paolo.quadri@remote.com> Signed-off-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Co-authored-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Signed-off-by: Isitha Subasinghe <isubasinghe@student.unimelb.edu.au>
Signed-off-by: Paolo Quadri <paolo.quadri@remote.com> Signed-off-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Co-authored-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com>
#### Motivation In order to reduce the Argo controller logs due to [this issue](argoproj/argo-workflows#11657), we can use [this workaround](argoproj/argo-workflows#12622) for now. #### Modification Using `WATCH_CONFIGMAPS=false` workaround implies upgrading Argo Workflows: - upgrade Argo Workflows to `3.5.5` - set `WATCH_CONFIGMAPS` to Argo Controller environment variable to `false` Non regression tested on a NonProd cluster. #### Checklist - [ ] Tests updated - [x] Docs updated - [x] Issue linked in Title
@xrafhue the os variable should be |
@tooptoop4 , after 2 days in all our clusters the logs are more generated. Thanks a lot. |
Fixes #11657
Original PR by @tooptoop4 here: #12400