Minikube
minikube is local Kubernetes, focusing on making it easy to learn and develop for Kubernetes
It’s good to test and learn Kubernetes in local. Because kubeadm, GCP, AWS and Azure is more complex to test and learn.
See Minikube Start
Set up
To use Minikube, you can download minikube command, also you need to set up Docker desktop. minikube works with Docker, so you need to setup Docker desktop as well. Please install
To start minikube, you just run following command
minikube start
Once minikube env is ready, you can see the item from Docker Desktop
From command line, you can check status
minikube status
You can see the current status. If you have anything wrong, can see message after this command.
kubectl
kubectl is a command line tool to manage Kubernetes.
Install Tools is to install kubectl command.
Now it’s ready to start learn Kubernetes in local machine.
コメント