-
I am trying to perform as usual operations is updating the revision in ArgoCD UI (click Edit and set the revision I want), however currently using v2.10.5, it will automatically sync immediately to the latest ver. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I'm not aware of any related bugs, and a quick search through Issues did not reveal any obvious candidates. If anyone is aware, feel free to reply. You could try using
One thing to consider is: if you are using the app-of-apps pattern, that is, you have your Argo CD |
Beta Was this translation helpful? Give feedback.
-
I'm also experiencing this, getting this error in CLI: at Nov 07 12:45 ❯ argocd --grpc-web app set argo/shared-use1-devops-cluster-atlantis --revision feature/redacted-lower-case-name-with-hyphens --source-position 1
FATA[0001] rpc error: code = InvalidArgument desc = application spec for shared-use1-devops-cluster-atlantis is invalid: InvalidSpecError: Unable to generate manifests in /: rpc error: code = Unknown desc = invalid revision 'feature/redacted-lower-case-name-with-hyphens': improper constraint: feature/redacted-lower-case-name-with-hyphens
☸ shared-use1-devops-cluster (internal-apps) in ~
at Nov 07 12:45 ❯ Tried both UI and directly updating in-cluster, no way. Sync policy is manual. |
Beta Was this translation helpful? Give feedback.
I'm not aware of any related bugs, and a quick search through Issues did not reveal any obvious candidates. If anyone is aware, feel free to reply.
You could try using
kubectl edit application/(resource)
to modify the revision directly viakubectl
, rather than using Argo CD UI (to determine if it's a UI issue), or using Argo CD CLI.One thing to consider is: if you are using the app-of-apps pattern, that is, you have your Argo CD
Application
CRs defined within your GitOps repository, then Argo CD would revert any changes that are n…