You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
386 B
11 lines
386 B
#!/bin/bash
|
|
minikube delete
|
|
minikube addons disable metrics-server
|
|
minikube start \
|
|
--kubernetes-version=v1.18.1 \
|
|
--memory=6g \
|
|
--bootstrapper=kubeadm \
|
|
--extra-config=kubelet.authentication-token-webhook=true \
|
|
--extra-config=kubelet.authorization-mode=Webhook \
|
|
--extra-config=scheduler.address=0.0.0.0 \
|
|
--extra-config=controller-manager.address=0.0.0.0
|
|
|