github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_app.md (about) 1 ## argocd app 2 3 Manage applications 4 5 ### Synopsis 6 7 Manage applications 8 9 ``` 10 argocd app [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 # List all the applications. 17 argocd app list 18 19 # Get the details of a application 20 argocd app get my-app 21 22 # Set an override parameter 23 argocd app set my-app -p image.tag=v1.0.1 24 ``` 25 26 ### Options 27 28 ``` 29 -h, --help help for app 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](argocd.md) - argocd controls a Argo CD server 55 * [argocd app actions](argocd_app_actions.md) - Manage Resource actions 56 * [argocd app create](argocd_app_create.md) - Create an application 57 * [argocd app delete](argocd_app_delete.md) - Delete an application 58 * [argocd app diff](argocd_app_diff.md) - Perform a diff against the target and live state. 59 * [argocd app edit](argocd_app_edit.md) - Edit application 60 * [argocd app get](argocd_app_get.md) - Get application details 61 * [argocd app history](argocd_app_history.md) - Show application deployment history 62 * [argocd app list](argocd_app_list.md) - List applications 63 * [argocd app manifests](argocd_app_manifests.md) - Print manifests of an application 64 * [argocd app patch](argocd_app_patch.md) - Patch application 65 * [argocd app patch-resource](argocd_app_patch-resource.md) - Patch resource in an application 66 * [argocd app resources](argocd_app_resources.md) - List resource of application 67 * [argocd app rollback](argocd_app_rollback.md) - Rollback application to a previous deployed version by History ID 68 * [argocd app set](argocd_app_set.md) - Set application parameters 69 * [argocd app sync](argocd_app_sync.md) - Sync an application to its target state 70 * [argocd app terminate-op](argocd_app_terminate-op.md) - Terminate running operation of an application 71 * [argocd app unset](argocd_app_unset.md) - Unset application parameters 72 * [argocd app wait](argocd_app_wait.md) - Wait for an application to reach a synced and healthy state 73