I am trying to learn Kubernetes from this YouTube course.
One hands-on thing I am trying is to install Minikube, Docker Desktop and kubectl to see the pods and containers working in real time.
I started Minikube - specifying Docker as my VM of choice
minikube start --vm-driver=docker
As I understand the Minikube will try to run both master and worker node in the same VM. So when I try to get its status like this:
minikube status
I expected it to give me type as "Master" like what is happening at this point but it gives "control plane". Even:
kubectl get nodes
What is "control plane"? It's not mentioned in this page.