github.com/argoproj/argo-cd/v2@v2.10.5/docs/user-guide/commands/argocd_appset_update.md (about) 1 ## argocd appset update 2 3 Updates the given ApplicationSet(s) 4 5 ``` 6 argocd appset update [flags] 7 ``` 8 9 ### Examples 10 11 ``` 12 13 # Update ApplicationSet 14 argocd appset update <filename or URL> (<filename or URL>...) 15 16 ``` 17 18 ### Options 19 20 ``` 21 -h, --help help for update 22 ``` 23 24 ### Options inherited from parent commands 25 26 ``` 27 --auth-token string Authentication token 28 --client-crt string Client certificate file 29 --client-crt-key string Client certificate key file 30 --config string Path to Argo CD config (default "/home/user/.config/argocd/config") 31 --core If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server 32 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 33 --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. 34 -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) 35 --http-retry-max int Maximum number of retries to establish http connection to Argo CD server 36 --insecure Skip server certificate and domain verification 37 --kube-context string Directs the command to the given kube-context 38 --logformat string Set the logging format. One of: text|json (default "text") 39 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 40 --plaintext Disable TLS 41 --port-forward Connect to a random argocd-server port using port forwarding 42 --port-forward-namespace string Namespace name which should be used for port forwarding 43 --server string Argo CD server address 44 --server-crt string Server certificate file 45 ``` 46 47 ### SEE ALSO 48 49 * [argocd appset](argocd_appset.md) - Manage ApplicationSets 50