-
Notifications
You must be signed in to change notification settings - Fork 121
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
How to specify ArgoCD version to use? #557
Comments
I have the same question 🤔 My ArgoCD was bumped to 2.10, which introduced a bug argoproj/argo-cd#17016 , and I'd like to rollback to an older version |
you can install using
(or use any other url for a speific argo-cd version, or even your own fork) to override the default argo-cd app specifier that installs the current stable version (defaults to please re-open if this isn't what you asked for. |
@noam-codefresh |
after bootstrapping a new repository (with the default settings), the if you replace this resource reference with you will need to copy over the following patches into your repo's kustomzation file: configMapGenerator:
- name: argocd-cm
behavior: merge
literals:
- "timeout.reconciliation=15s"
patches:
# reset the crbs to `subject.namespace: default`, so that argo-cd will later change them to the actual ns
- target:
group: rbac.authorization.k8s.io
version: v1
kind: ClusterRoleBinding
patch: |-
- op: replace
path: /subjects/0/namespace
value: default the first patch will change the default reconciliation timeout to 15s. the second patch is important if you install to a non-default ( |
Thanks, @noam-codefresh. That's what I understood and would have done. I just thought this would be more of a workaround, rather than intended. |
thank you @AlexEndris for helping me realize we have an issue - while writing my reply i realized that actually installing with do you want to open an issue about it? |
@noam-codefresh Done :) Glad to be of help with asking seemingly stupid questions 👍🏻 |
Hi,
currently, the version 0.4.17 of argocd-autopilot links to the install script in the master branch of the argocd repository. How can I specify which version of argocd (not autopilot) to use?
It would be very helpful if we could control updates and upgrades of argocd this way, instead of always linking to the master branch.
Maybe it's already possible, and I'm just missing something, but if not, that would be truly handy!
Thanks!
The text was updated successfully, but these errors were encountered: