Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Install Ubuntu on WSL2 in windows


Install

...

See https://minikube.sigs.k8s.io/docs/start/

Download the executable : https://storage.googleapis.com/minikube/releases/latest/minikube-installer.exe

Image RemovedImage RemovedImage RemovedImage Removed

From a Powershell with Administrator Privileges

...

Docker

...

Create a Script too call minikube.exe from WSL2/Ubuntu

...

...

$ vi minikube
Code Block
#!/bin/sh
/mnt/c/Program\ Files/Kubernetes/Minikube/minikube.exe $@

Make executable and copy it to a folder in your path

Code Block
$ chmod +x ./minikube
$ sudo mv minikube /usr/local/bin/.

Configure

Code Block
$ minikube config set cpus 4
$ minikube config set memory 8192

If you are changing the above configuration, you will need to first delete the minikube instance using the command 'minikube delete'.

Start

Code Block
$ minikube start

* minikube v1.23.2 on Microsoft Windows 10 Enterprise 10.0.18363 Build 18363
* Automatically selected the virtualbox driver
* Downloading VM boot image ...
    > minikube-v1.23.1.iso.sha256: 65 B / 65 B [-------------] 100.00% ? p/s 0s
    > minikube-v1.23.1.iso: 26.05 MiB / 225.22 MiB  11.56% 5.51 MiB p/s ETA 36s      
...           

Install Kubectl

In WSL/Ubuntu:

Code Block
# download
$ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
 
#install
$ sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
Code Block
$ cd ~
$ cp -R /mnt/c/Users/mehan/.kube/ .


Install Docker

See https://docs.docker.com/engine/install/ubuntu/

...

Code Block
$ sudo /etc/init.d/docker start


Configure

Code Block
$ minikube config set cpus 4
$ minikube config set memory 8192

If you are changing the above configuration, you will need to first delete the minikube instance using the command 'minikube delete'.



Start Minikube

Code Block
$ evalminikube $(minikube docker-env)

$ minikube start
start --vm-driver=docker
  minikube v1.23.2 on Ubuntu 20.04
Automatically  selectedUsing the docker driver. Otherbased choices:on none,user sshconfiguration
  Starting control plane node minikube in cluster minikube
  Pulling base image ...
  Downloading Kubernetes v1.22.2 preload ...
   > gcr.io/k8s-minikube/kicbase: 1.21preloaded-images-k8s-v13-v1...: 511.84 MiB / 355.40 MiB  0.34% 23.92 KiB p/s E
... 511.84 MiB  100.00% 3.39 MiB
  Creating docker container (CPUs=2, Memory=3100MB) ...
  This container is having trouble accessing https://k8s.gcr.io
  To pull new external images, you may need to configure a proxy: https://minikube.sigs.k8s.io/docs/reference/networking/proxy/
  Preparing Kubernetes v1.22.2 on Docker 20.10.8 ...
   ▪ Generating certificates and keys ...
   ▪ Booting up control plane ...
   ▪ Configuring RBAC rules ...
  Verifying Kubernetes components...
   ▪ Using image gcr.io/k8s-minikube/storage-provisioner:v5
  Enabled addons: storage-provisioner, default-storageclass
  Done! kubectl is now configured to use "minikube" cluster and "default" namespace by default



References

...