One of the easiest ways to start your first container orchestration cluster with Kubernetes is to use Minikube. Learn how to install Minikube on Ubuntu.
One of the easiest ways to start your first container orchestration cluster with Kubernetes is to use Minikube.
minikube is local Kubernetes, focusing on making it easy to learn and develop for Kubernetes.
All you need is Docker (or similarly compatible) container or a Virtual Machine environment
I will start the tutorial on a fresh Ubuntu 20.04 server running in Proxmox VE. The VM is assigned 4 CPU cores and 8 GB of RAM to allow for future expansion.
I need to make sure Docker is running, as Docker will be used to host the Kubernetes cluster by default, other options include: vmware, kvm, podman and virtualbox.
1
docker ps
If Docker is not running you can easily install with one command thanks to the Snap store included in Ubuntu:
1
sudo snap install docker
If Docker is installed, but you get permission denied, or you are forced to use sudo to access docker commands, follow this article to fix this issue.
Now, lets download the Debian package for Minikube using the following set of commands: