Posts

Showing posts from October, 2021

Kubernetes Installation on desktop debian

Target Audience: Anyone who wants to learn kubernetes on their local debian machine Step 1: Install Docker : https://docs.docker.com/engine/install/debian/  follow the steps in the URL to install docker on your machine Step 2: install Kubectl : https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/ follow the steps in the link to install kubectl on the machine  Step 3: install minikube :https://minikube.sigs.k8s.io/docs/start/ Step 4: Manage the docker in non root mode https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user I just had to add my user to existing docker group using  sudo usermod -aG docker $USER and then reload the groups using  newgrp docker Step 5: Start minikube I was able to run  minikube start 😄  minikube v1.23.2 on Debian 11.1 ✨  Automatically selected the docker driver 👍  Starting control plane node minikube in cluster minikube 🚜  Pulling base image ... 💾  Downloading K...