'How to create more than one cluster in minikube
I need to create additional cluster in minikube. I searched for a while I haven't got any resource on this.How to create a cluster in minikube?
Solution 1:[1]
Create first cluster named cluster-1:
minikube start -p cluster-1
Create second cluster named cluster-2:
minikube start -p cluster-2
Switch between the clusters:
# switch to cluster-1
minikube profile cluster-1
# switch to cluster-2
minikube profile cluster-2
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Emruz Hossain |
