Iam trying to start Minikube but it gives an error:
Error getting primary cp:could not find master node
What is the reason for this error & How to fix this error?
Iam trying to start Minikube but it gives an error:
Error getting primary cp:could not find master node
What is the reason for this error & How to fix this error?
You might get this error when you update your Minikube establishment; Minikube is as yet referring to the old documents inside $HOME/.minikube catalog. To stay away from this error, basically delete the .minikube directory and start Minikube again.
You can use below commands to do the same:
$ minikube delete — all — purge
$ rm -rf .minikube/
$ minikube start --vm-driver=virtualbox
Refer to the Medium Blog written by Shashank Srivastava for more information about this error.