Calico Networking
Create a single-node minikube cluster
Minikube offers a built-in Calico implementation, this is a quick way to checkout Calico features.
minikube start --network-plugin=cni --cni=calicoVerify Calico installation
You can verify Calico installation in your cluster by issuing the following command.
watch kubectl get pods -l k8s-app=calico-node -AUse ctrl+c to break out of watch.
Congratulations you now have a minikube cluster equipped with Calico
Add an additional worker node
minikube node addVerify nodes using the following command
minikube node listEnable Metrics Server
minikube addons enable metrics-serverEnsure your Master Node is in Healthy State and all the necessary services and pods are working fine.
Last updated