github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_app_list.md (about) 1 ## argocd app list 2 3 List applications 4 5 ### Synopsis 6 7 List applications 8 9 ``` 10 argocd app list [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 # List all apps 17 argocd app list 18 19 # List apps by label, in this example we listing apps that are children of another app (aka app-of-apps) 20 argocd app list -l app.kubernetes.io/instance=my-app 21 ``` 22 23 ### Options 24 25 ``` 26 -h, --help help for list 27 -o, --output string Output format. One of: wide|name|json|yaml (default "wide") 28 -p, --project stringArray Filter by project name 29 -l, --selector string List apps by label 30 ``` 31 32 ### Options inherited from parent commands 33 34 ``` 35 --auth-token string Authentication token 36 --client-crt string Client certificate file 37 --client-crt-key string Client certificate key file 38 --config string Path to Argo CD config (default "/home/user/.argocd/config") 39 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 40 --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. 41 -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) 42 --insecure Skip server certificate and domain verification 43 --logformat string Set the logging format. One of: text|json (default "text") 44 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 45 --plaintext Disable TLS 46 --port-forward Connect to a random argocd-server port using port forwarding 47 --port-forward-namespace string Namespace name which should be used for port forwarding 48 --server string Argo CD server address 49 --server-crt string Server certificate file 50 ``` 51 52 ### SEE ALSO 53 54 * [argocd app](argocd_app.md) - Manage applications 55