github.com/argoproj/argo-cd/v3@v3.2.1/docs/user-guide/commands/argocd_admin.md (about) 1 # `argocd admin` Command Reference 2 3 ## argocd admin 4 5 Contains a set of commands useful for Argo CD administrators and requires direct Kubernetes access 6 7 ``` 8 argocd admin [flags] 9 ``` 10 11 ### Examples 12 13 ``` 14 # Access the Argo CD web UI 15 $ argocd admin dashboard 16 17 # Reset the initial admin password 18 $ argocd admin initial-password reset 19 20 ``` 21 22 ### Options 23 24 ``` 25 -h, --help help for admin 26 --logformat string Set the logging format. One of: json|text (default "json") 27 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 28 ``` 29 30 ### Options inherited from parent commands 31 32 ``` 33 --argocd-context string The name of the Argo-CD server context to use 34 --auth-token string Authentication token; set this or the ARGOCD_AUTH_TOKEN environment variable 35 --client-crt string Client certificate file 36 --client-crt-key string Client certificate key file 37 --config string Path to Argo CD config (default "/home/user/.config/argocd/config") 38 --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") 39 --core If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server 40 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 41 --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. 42 -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) 43 --http-retry-max int Maximum number of retries to establish http connection to Argo CD server 44 --insecure Skip server certificate and domain verification 45 --kube-context string Directs the command to the given kube-context 46 --plaintext Disable TLS 47 --port-forward Connect to a random argocd-server port using port forwarding 48 --port-forward-namespace string Namespace name which should be used for port forwarding 49 --prompts-enabled Force optional interactive prompts to be enabled or disabled, overriding local configuration. If not specified, the local configuration value will be used, which is false by default. 50 --redis-compress string Enable this if the application controller is configured with redis compression enabled. (possible values: gzip, none) (default "gzip") 51 --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") 52 --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") 53 --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") 54 --server string Argo CD server address 55 --server-crt string Server certificate file 56 --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") 57 ``` 58 59 ### SEE ALSO 60 61 * [argocd](argocd.md) - argocd controls a Argo CD server 62 * [argocd admin app](argocd_admin_app.md) - Manage applications configuration 63 * [argocd admin cluster](argocd_admin_cluster.md) - Manage clusters configuration 64 * [argocd admin dashboard](argocd_admin_dashboard.md) - Starts Argo CD Web UI locally 65 * [argocd admin export](argocd_admin_export.md) - Export all Argo CD data to stdout (default) or a file 66 * [argocd admin import](argocd_admin_import.md) - Import Argo CD data from stdin (specify `-') or a file 67 * [argocd admin initial-password](argocd_admin_initial-password.md) - Prints initial password to log in to Argo CD for the first time 68 * [argocd admin notifications](argocd_admin_notifications.md) - Set of CLI commands that helps manage notifications settings 69 * [argocd admin proj](argocd_admin_proj.md) - Manage projects configuration 70 * [argocd admin redis-initial-password](argocd_admin_redis-initial-password.md) - Ensure the Redis password exists, creating a new one if necessary. 71 * [argocd admin repo](argocd_admin_repo.md) - Manage repositories configuration 72 * [argocd admin settings](argocd_admin_settings.md) - Provides set of commands for settings validation and troubleshooting 73