-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
feat(appset): add configurable max reconciliations to appset #13381
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,17 +91,29 @@ spec: | |
key: applicationsetcontroller.enable.progressive.syncs | ||
name: argocd-cmd-params-cm | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER_PLAINTEXT | ||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_REPO_SERVER_PLAINTEXT | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.repo.server.plaintext | ||
key: applicationsetcontroller.repo.server.plaintext | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should add docs for ppl upgrading from 2.7 to 2.8 running without in-cluster TLS (this seems to have broken applicationset controller with error "transport: authentication handshake failed: tls: first record does not look like a TLS handshake" ) didn't see a notice about this cmd param config change here and missing from the sample in docs There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER_STRICT_TLS | ||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_REPO_SERVER_STRICT_TLS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.repo.server.strict.tls | ||
key: applicationsetcontroller.repo.server.strict.tls | ||
optional: true | ||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_REPO_SERVER_TIMEOUT_SECONDS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: applicationsetcontroller.repo.server.timeout.seconds | ||
optional: true | ||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_CONCURRENT_RECONCILIATIONS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: applicationsetcontroller.concurrent.reconciliations.max | ||
Comment on lines
+94
to
+116
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated the env var names from app controller to appset controller and also made them point to appset specific config instead of re-using app controller config. |
||
optional: true | ||
volumeMounts: | ||
- mountPath: /app/config/ssh | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
set the default to 10 and max to 100 for now, let me know if that needs to be changed.