github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_version.md (about) 1 ## argocd version 2 3 Print version information 4 5 ### Synopsis 6 7 Print version information 8 9 ``` 10 argocd version [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 # Print the full version of client and server to stdout 17 argocd version 18 19 # Print only full version of the client - no connection to server will be made 20 argocd version --client 21 22 # Print the full version of client and server in JSON format 23 argocd version -o json 24 25 # Print only client and server core version strings in YAML format 26 argocd version --short -o yaml 27 28 ``` 29 30 ### Options 31 32 ``` 33 --client client version only (no server required) 34 -h, --help help for version 35 -o, --output string Output format. One of: json|yaml|wide|short (default "wide") 36 --short print just the version number 37 ``` 38 39 ### Options inherited from parent commands 40 41 ``` 42 --auth-token string Authentication token 43 --client-crt string Client certificate file 44 --client-crt-key string Client certificate key file 45 --config string Path to Argo CD config (default "/home/user/.argocd/config") 46 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 47 --grpc-web-root-path string Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. Set web root. 48 -H, --header strings Sets additional header to all requests made by Argo CD CLI. (Can be repeated multiple times to add multiple headers, also supports comma separated headers) 49 --insecure Skip server certificate and domain verification 50 --logformat string Set the logging format. One of: text|json (default "text") 51 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 52 --plaintext Disable TLS 53 --port-forward Connect to a random argocd-server port using port forwarding 54 --port-forward-namespace string Namespace name which should be used for port forwarding 55 --server string Argo CD server address 56 --server-crt string Server certificate file 57 ``` 58 59 ### SEE ALSO 60 61 * [argocd](argocd.md) - argocd controls a Argo CD server 62