This tutorial assumers that minikube kubernetes is already installed. Steps to create multi node cluster :
- Start a cluster with 2 nodes:
minikube start --nodes 2 -p multinode-demo
- Check node count
kubectl get nodes - Check status of nodes
minikube status -p multinode-demo
- Create test deployment on the cluster created
- View the service using
minikube service hello-minikube --profile multinode-demo
- Note: to see the available profile list
minikube profile list