Skip to content
Snippets Groups Projects
Unverified Commit 35a3b001 authored by Zvi Cahana's avatar Zvi Cahana Committed by GitHub
Browse files

Update --bind-address flag for minikube deployment example

Updates the Minikube deployment example to use the `--bind-address=0.0.0.0` flags instead of the `--address=0.0.0.0` flag, which has been deprecated for the [kube-scheduler](https://kubernetes.io/docs/reference/command-line-tools-reference/kube-scheduler/), and removed altogether for the [kube-controller-manager](https://kubernetes.io/docs/reference/command-line-tools-reference/kube-controller-manager/).
parent 2c25661f
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ This adapter is an Extension API Server and Kubernetes needs to be have this fea ...@@ -91,7 +91,7 @@ This adapter is an Extension API Server and Kubernetes needs to be have this fea
To try out this stack, start [minikube](https://github.com/kubernetes/minikube) with the following command: To try out this stack, start [minikube](https://github.com/kubernetes/minikube) with the following command:
```shell ```shell
$ minikube delete && minikube start --kubernetes-version=v1.20.0 --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 $ minikube delete && minikube start --kubernetes-version=v1.20.0 --memory=6g --bootstrapper=kubeadm --extra-config=kubelet.authentication-token-webhook=true --extra-config=kubelet.authorization-mode=Webhook --extra-config=scheduler.bind-address=0.0.0.0 --extra-config=controller-manager.bind-address=0.0.0.0
``` ```
The kube-prometheus stack includes a resource metrics API server, so the metrics-server addon is not necessary. Ensure the metrics-server addon is disabled on minikube: The kube-prometheus stack includes a resource metrics API server, so the metrics-server addon is not necessary. Ensure the metrics-server addon is disabled on minikube:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment