Merge pull request #7532 from prasadkatti/master

More updates to the configuration docs
pull/7081/head
Medya Ghazizadeh 2020-04-08 16:47:51 -07:00 committed by GitHub
commit 40244a6417
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 6 deletions

View File

@ -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.