Saturday, June 21, 2025

MINICUBE - Instalation

 


    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:

MINIKUBE DRIVERS

MINIKUBE BASIC CONTROL

MINIKUBE TUTORIALS

 

 

 

 

 



No comments:

Post a Comment

K8s cluster - bash install

     In my homelab, I testes another method of installation of Kubernetes. Average time of installation of Kubernetes via Ansible was 15 min...