Vano
Vano

Reputation: 1538

argocd cli json output

I'm trying to make argocd cli output yaml/json to prep it for script ingestion.

According to this PR: https://github.com/argoproj/argo-cd/pull/2551 It should be available but I can't find the option in cli help nor in documentation.

#argocd version:                                                                                                                                    
argocd: v2.1.2+7af9dfb
...
argocd-server: v2.0.3+8d2b13d

Upvotes: 3

Views: 1172

Answers (1)

crenshaw-dev
crenshaw-dev

Reputation: 8402

Some commands accept the -o json flag to request JSON output.

Look in the commands documentation to find commands which support that flag.

argocd cluster list -o json, for example, will return a JSON list of configured clusters. The documentation looks like this:

Options

   -h, --help            help for get
   -o, --output string  
Output format. One of: json|yaml|wide|server (default "yaml")

Upvotes: 4

Related Questions