Kubernetes is a container orchestration platform used to manage and scale applications. Minikube allows you to run Kubernetes locally on Ubuntu. This guide explains how to install Minikube.
sudo apt update
sudo apt install curl wget apt-transport-https -y
sudo apt install docker.io -y
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb
sudo dpkg -i minikube_latest_amd64.deb
minikube start --driver=docker
kubectl get nodes