Minikube - A local single-node Kubernetes cluster
From MyWiki
Requires a Type-2 hypervisor installed on workstation. Minikube creates a single VM which then hosts a single-node Kubernetes cluster<bre>
With the --vm-driver=none option the components are run on the host, this requires a docker installation
VR-x/AMD-v must be enabled in BIOS on workstation.
Internet connection is required to pull packages, etc
Installing Minikube on Linux, we will choose Ubuntu Linux 18.04 LTS
$ sudo bash -c 'echo "deb https://download.virtualbox.org/virtualbox/debian bionic contrib" >> /etc/apt/sources.list' $ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - $ sudo apt-get update $ sudo apt-get install -y virtualbox-6.0