github.com/argoproj/argo-cd/v2@v2.10.5/docs/user-guide/commands/argocd_app_get.md (about)

     1  # `argocd app get` Command Reference
     2  
     3  ## argocd app get
     4  
     5  Get application details
     6  
     7  ```
     8  argocd app get APPNAME [flags]
     9  ```
    10  
    11  ### Examples
    12  
    13  ```
    14    # Get basic details about the application "my-app" in wide format
    15    argocd app get my-app -o wide
    16    
    17    # Get detailed information about the application "my-app" in YAML format
    18    argocd app get my-app -o yaml
    19    
    20    # Get details of the application "my-app" in JSON format
    21    argocd get my-app -o json
    22    
    23    # Get application details and include information about the current operation
    24    argocd app get my-app --show-operation
    25    
    26    # Show application parameters and overrides
    27    argocd app get my-app --show-params
    28    
    29    # Refresh application data when retrieving
    30    argocd app get my-app --refresh
    31    
    32    # Perform a hard refresh, including refreshing application data and target manifests cache
    33    argocd app get my-app --hard-refresh
    34    
    35    # Get application details and display them in a tree format
    36    argocd app get my-app --output tree
    37    
    38    # Get application details and display them in a detailed tree format
    39    argocd app get my-app --output tree=detailed
    40  ```
    41  
    42  ### Options
    43  
    44  ```
    45        --hard-refresh     Refresh application data as well as target manifests cache
    46    -h, --help             help for get
    47    -o, --output string    Output format. One of: json|yaml|wide|tree (default "wide")
    48        --refresh          Refresh application data when retrieving
    49        --show-operation   Show application operation
    50        --show-params      Show application parameters and overrides
    51  ```
    52  
    53  ### Options inherited from parent commands
    54  
    55  ```
    56        --auth-token string               Authentication token
    57        --client-crt string               Client certificate file
    58        --client-crt-key string           Client certificate key file
    59        --config string                   Path to Argo CD config (default "/home/user/.config/argocd/config")
    60        --controller-name string          Name of the Argo CD Application controller; set this or the ARGOCD_APPLICATION_CONTROLLER_NAME environment variable when the controller's name label differs from the default, for example when installing via the Helm chart (default "argocd-application-controller")
    61        --core                            If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server
    62        --grpc-web                        Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2.
    63        --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.
    64    -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)
    65        --http-retry-max int              Maximum number of retries to establish http connection to Argo CD server
    66        --insecure                        Skip server certificate and domain verification
    67        --kube-context string             Directs the command to the given kube-context
    68        --logformat string                Set the logging format. One of: text|json (default "text")
    69        --loglevel string                 Set the logging level. One of: debug|info|warn|error (default "info")
    70        --plaintext                       Disable TLS
    71        --port-forward                    Connect to a random argocd-server port using port forwarding
    72        --port-forward-namespace string   Namespace name which should be used for port forwarding
    73        --redis-haproxy-name string       Name of the Redis HA Proxy; set this or the ARGOCD_REDIS_HAPROXY_NAME environment variable when the HA Proxy's name label differs from the default, for example when installing via the Helm chart (default "argocd-redis-ha-haproxy")
    74        --redis-name string               Name of the Redis deployment; set this or the ARGOCD_REDIS_NAME environment variable when the Redis's name label differs from the default, for example when installing via the Helm chart (default "argocd-redis")
    75        --repo-server-name string         Name of the Argo CD Repo server; set this or the ARGOCD_REPO_SERVER_NAME environment variable when the server's name label differs from the default, for example when installing via the Helm chart (default "argocd-repo-server")
    76        --server string                   Argo CD server address
    77        --server-crt string               Server certificate file
    78        --server-name string              Name of the Argo CD API server; set this or the ARGOCD_SERVER_NAME environment variable when the server's name label differs from the default, for example when installing via the Helm chart (default "argocd-server")
    79  ```
    80  
    81  ### SEE ALSO
    82  
    83  * [argocd app](argocd_app.md)	 - Manage applications
    84