minikube/docs/configuring_kubernetes.md

22 lines
813 B
Markdown
Raw Normal View History

2017-10-17 22:34:42 +00:00
## Configuring Kubernetes
Minikube has a "configurator" feature that 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.
This flag is repeated, so you can pass it several times with several different values to set multiple options.
2017-10-17 22:34:42 +00:00
### Kubeadm bootstrapper
The kubeadm bootstrapper can be configured by the `--extra-config` flag on the `minikube start` command. It takes a string of the form `component.key=value` where `component` is one of the strings
* kubelet
* apiserver
* controller-manager
* scheduler
and `key=value` is a flag=value pair for the component being configured. For example,
2018-02-12 11:42:03 +00:00
```shell
2017-10-17 22:34:42 +00:00
minikube start --extra-config=apiserver.v=10 --extra-config=kubelet.max-pods=100
```