I was thinking what is the set up simpliest Kubebenetes. I need eviroment for sandbox. It need to easy to remove and set up again in repetable matter. After some test, I choose minikube. It has good documentation fullfill my needs.
To start minikube user link. There You select accordingly for your local hardware.
curl -LO https://github.com/kubernetes/minikube/releases/latest/download/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube && rm minikube-linux-amd64
minikube version
minikube start
minikube kubectl -- get po -A
You can choose driver as You like. I choose docker.
minikube start --driver=docker
You set Your driver as default for next starts.
minikube config set driver docker => minikube start
Usefull links:





No comments:
Post a Comment