github.com/argoproj/argo-cd@v1.8.7/docs/operator-manual/server-commands/argocd-util_settings_validate.md (about) 1 ## argocd-util settings validate 2 3 Validate settings 4 5 ### Synopsis 6 7 Validates settings specified in 'argocd-cm' ConfigMap and 'argocd-secret' Secret 8 9 ``` 10 argocd-util settings validate [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 #Validates all settings in the specified YAML file 18 argocd-util settings validate --argocd-cm-path ./argocd-cm.yaml 19 20 #Validates accounts and plugins settings in Kubernetes cluster of current kubeconfig context 21 argocd-util settings validate --group accounts --group plugins --load-cluster-settings 22 ``` 23 24 ### Options 25 26 ``` 27 --group stringArray Optional list of setting groups that have to be validated ( one of: accounts, general, kustomize, plugins, repositories, resource-overrides) 28 -h, --help help for validate 29 ``` 30 31 ### Options inherited from parent commands 32 33 ``` 34 --argocd-cm-path string Path to local argocd-cm.yaml file 35 --argocd-secret-path string Path to local argocd-secret.yaml file 36 --as string Username to impersonate for the operation 37 --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. 38 --certificate-authority string Path to a cert file for the certificate authority 39 --client-certificate string Path to a client certificate file for TLS 40 --client-key string Path to a client key file for TLS 41 --cluster string The name of the kubeconfig cluster to use 42 --context string The name of the kubeconfig context to use 43 --insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure 44 --kubeconfig string Path to a kube config. Only required if out-of-cluster 45 --load-cluster-settings Indicates that config map and secret should be loaded from cluster unless local file path is provided 46 -n, --namespace string If present, the namespace scope for this CLI request 47 --password string Password for basic authentication to the API server 48 --request-timeout string The length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests. (default "0") 49 --server string The address and port of the Kubernetes API server 50 --tls-server-name string If provided, this name will be used to validate server certificate. If this is not provided, hostname used to contact the server is used. 51 --token string Bearer token for authentication to the API server 52 --user string The name of the kubeconfig user to use 53 --username string Username for basic authentication to the API server 54 ``` 55 56 ### SEE ALSO 57 58 * [argocd-util settings](argocd-util_settings.md) - Provides set of commands for settings validation and troubleshooting 59