Ability to remove overridden parameters to a certain app without knowing which parameters #8454
cristi-vlad
started this conversation in
Ideas
Replies: 2 comments 1 reply
-
You may try using "argocd app patch" to remove whole .spec.source.helm.parameters node. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Just for reference. This command did the trick for me: argocd app patch [appName] --patch '{"spec": { "source": { "helm": { "parameters": [] }}}}' --type merge |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
By using argocd app unset you need to know exactly which parameter you want to unset but maybe there is worth to have something like hard reset of an application using argocd cli (to be used into scripts)
Also, I couldn't find a way by using argocd app unset to group apps based on labels and unset all (whether or not they have rewritten parameters)
Beta Was this translation helpful? Give feedback.
All reactions