github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_account_can-i.md (about) 1 ## argocd account can-i 2 3 Can I 4 5 ### Synopsis 6 7 Can I 8 9 ``` 10 argocd account can-i ACTION RESOURCE SUBRESOURCE [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 # Can I sync any app? 18 argocd account can-i sync applications '*' 19 20 # Can I update a project? 21 argocd account can-i update projects 'default' 22 23 # Can I create a cluster? 24 argocd account can-i create clusters '*' 25 26 Actions: [get create update delete sync override] 27 Resources: [clusters projects applications repositories certificates] 28 29 ``` 30 31 ### Options 32 33 ``` 34 -h, --help help for can-i 35 ``` 36 37 ### Options inherited from parent commands 38 39 ``` 40 --auth-token string Authentication token 41 --client-crt string Client certificate file 42 --client-crt-key string Client certificate key file 43 --config string Path to Argo CD config (default "/home/user/.argocd/config") 44 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 45 --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. 46 -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) 47 --insecure Skip server certificate and domain verification 48 --logformat string Set the logging format. One of: text|json (default "text") 49 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 50 --plaintext Disable TLS 51 --port-forward Connect to a random argocd-server port using port forwarding 52 --port-forward-namespace string Namespace name which should be used for port forwarding 53 --server string Argo CD server address 54 --server-crt string Server certificate file 55 ``` 56 57 ### SEE ALSO 58 59 * [argocd account](argocd_account.md) - Manage account settings 60