diff --git a/site/content/en/docs/handbook/config.md b/site/content/en/docs/handbook/config.md index c14dfc85f8..9479c3c691 100644 --- a/site/content/en/docs/handbook/config.md +++ b/site/content/en/docs/handbook/config.md @@ -17,18 +17,24 @@ minikube start --help minikube allows users to persistently store new default values to be used across all profiles, using the `minikube config` command. This is done providing a property name, and a property value. -### Listing config properties - -```shell -minikube config -``` - For example, to persistently configure minikube to use hyperkit: ```shell minikube config set driver hyperkit ``` +You can get a complete list of configurable fields using: + +```shell +minikube config --help +``` + +To get a list of the currently set config properties: + +```shell +minikube config view +``` + ## Kubernetes configuration minikube allows users to configure the Kubernetes components with arbitrary values. To use this feature, you can use the `--extra-config` flag on the `minikube start` command.