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

     1  # `argocd app unset` Command Reference
     2  
     3  ## argocd app unset
     4  
     5  Unset application parameters
     6  
     7  ```
     8  argocd app unset APPNAME parameters [flags]
     9  ```
    10  
    11  ### Examples
    12  
    13  ```
    14    # Unset kustomize override kustomize image
    15    argocd app unset my-app --kustomize-image=alpine
    16  
    17    # Unset kustomize override prefix
    18    argocd app unset my-app --namesuffix
    19  
    20    # Unset parameter override
    21    argocd app unset my-app -p COMPONENT=PARAM
    22  ```
    23  
    24  ### Options
    25  
    26  ```
    27    -h, --help                            help for unset
    28        --ignore-missing-value-files      Unset the helm ignore-missing-value-files option (revert to false)
    29        --kustomize-image stringArray     Kustomize images name (e.g. --kustomize-image node --kustomize-image mysql)
    30        --kustomize-namespace             Kustomize namespace
    31        --kustomize-replica stringArray   Kustomize replicas name (e.g. --kustomize-replica my-deployment --kustomize-replica my-statefulset)
    32        --kustomize-version               Kustomize version
    33        --nameprefix                      Kustomize nameprefix
    34        --namesuffix                      Kustomize namesuffix
    35    -p, --parameter stringArray           Unset a parameter override (e.g. -p guestbook=image)
    36        --pass-credentials                Unset passCredentials
    37        --plugin-env stringArray          Unset plugin env variables (e.g --plugin-env name)
    38        --values stringArray              Unset one or more Helm values files
    39        --values-literal                  Unset literal Helm values block
    40  ```
    41  
    42  ### Options inherited from parent commands
    43  
    44  ```
    45        --auth-token string               Authentication token
    46        --client-crt string               Client certificate file
    47        --client-crt-key string           Client certificate key file
    48        --config string                   Path to Argo CD config (default "/home/user/.config/argocd/config")
    49        --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")
    50        --core                            If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server
    51        --grpc-web                        Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2.
    52        --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.
    53    -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)
    54        --http-retry-max int              Maximum number of retries to establish http connection to Argo CD server
    55        --insecure                        Skip server certificate and domain verification
    56        --kube-context string             Directs the command to the given kube-context
    57        --logformat string                Set the logging format. One of: text|json (default "text")
    58        --loglevel string                 Set the logging level. One of: debug|info|warn|error (default "info")
    59        --plaintext                       Disable TLS
    60        --port-forward                    Connect to a random argocd-server port using port forwarding
    61        --port-forward-namespace string   Namespace name which should be used for port forwarding
    62        --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")
    63        --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")
    64        --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")
    65        --server string                   Argo CD server address
    66        --server-crt string               Server certificate file
    67        --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")
    68  ```
    69  
    70  ### SEE ALSO
    71  
    72  * [argocd app](argocd_app.md)	 - Manage applications
    73