How does 'sync --info stringArray' work during an 'argocd app sync' ? #5401
-
I'm trying to automate our deployments using CLI as recommended from the docs however I'm trying to add more info to every sync that i'm doing, adding metadata, something like BTW: it is indeed synchronizing as expected |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @jmarcos-cano , The Currently
|
Beta Was this translation helpful? Give feedback.
Hello @jmarcos-cano ,
The
--info
flag adds info items intoapp.operation.info
(which is copied toapp.status.operationState.operation.info
when operation is completed). So this is operation metadata, not application metadata. Currently, it is not shown in Argo CD UI and the feature is used to build custom integration by some users.Currently
argocd
CLI does not have a flag to update app level info but you can use genericargocd app patch
command: