github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_proj_windows_update.md (about) 1 ## argocd proj windows update 2 3 Update a project sync window 4 5 ### Synopsis 6 7 Update a project sync window. Requires ID which can be found by running "argocd proj windows list PROJECT" 8 9 ``` 10 argocd proj windows update PROJECT ID [flags] 11 ``` 12 13 ### Options 14 15 ``` 16 --applications strings Applications that the schedule will be applied to. Comma separated, wildcards supported (e.g. --applications prod-\*,website) 17 --clusters strings Clusters that the schedule will be applied to. Comma separated, wildcards supported (e.g. --clusters prod,staging) 18 --duration string Sync window duration. (e.g. --duration 1h) 19 -h, --help help for update 20 --namespaces strings Namespaces that the schedule will be applied to. Comma separated, wildcards supported (e.g. --namespaces default,\*-prod) 21 --schedule string Sync window schedule in cron format. (e.g. --schedule "0 22 * * *") 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/.argocd/config") 31 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 32 --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. 33 -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) 34 --insecure Skip server certificate and domain verification 35 --logformat string Set the logging format. One of: text|json (default "text") 36 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 37 --plaintext Disable TLS 38 --port-forward Connect to a random argocd-server port using port forwarding 39 --port-forward-namespace string Namespace name which should be used for port forwarding 40 --server string Argo CD server address 41 --server-crt string Server certificate file 42 ``` 43 44 ### SEE ALSO 45 46 * [argocd proj windows](argocd_proj_windows.md) - Manage a project's sync windows 47