github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_app_unset.md (about) 1 ## argocd app unset 2 3 Unset application parameters 4 5 ### Synopsis 6 7 Unset application parameters 8 9 ``` 10 argocd app unset APPNAME parameters [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 # Unset kustomize override kustomize image 17 argocd app unset my-app --kustomize-image=alpine 18 19 # Unset kustomize override prefix 20 argocd app unset my-app --namesuffix 21 22 # Unset parameter override 23 argocd app unset my-app -p COMPONENT=PARAM 24 ``` 25 26 ### Options 27 28 ``` 29 -h, --help help for unset 30 --kustomize-image stringArray Kustomize images name (e.g. --kustomize-image node --kustomize-image mysql) 31 --kustomize-version Kustomize version 32 --nameprefix Kustomize nameprefix 33 --namesuffix Kustomize namesuffix 34 -p, --parameter stringArray Unset a parameter override (e.g. -p guestbook=image) 35 --values stringArray Unset one or more Helm values files 36 --values-literal Unset literal Helm values block 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 app](argocd_app.md) - Manage applications 62