Use correct kubelet config name (#13185)

At its current form minikube fails to start with following error:

    unknown flag: --AllowedUnsafeSysctls

Renaming it to allowed-unsafe-sysctls works as expected.
This commit is contained in:
Amir M. Saeid
2019-03-15 09:58:57 +00:00
committed by Kubernetes Prow Robot
parent ed359861fa
commit 80b73a4c03
@@ -83,7 +83,7 @@ kubelet --allowed-unsafe-sysctls \
For minikube, this can be done via the `extra-config` flag:
```shell
minikube start --extra-config="kubelet.AllowedUnsafeSysctls=kernel.msg*,net.ipv4.route.min_pmtu"...
minikube start --extra-config="kubelet.allowed-unsafe-sysctls=kernel.msg*,net.ipv4.route.min_pmtu"...
```
Only _namespaced_ sysctls can be enabled this way.