Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Microk8s is a more lightweight solution than Minikube (even thought Microk8s is only for Linux.)

Installation

  1. Install kubectl

  2. Install Minikube

  3. Start minikube.

     :::bash
     minikube start --vm-driver=hyperkit
  4. Check status of minikube.

     :::bash
     minikube status
  5. Launch minikube dashboard.

     :::bash
     minikube dashboard
  6. Show minikube IP.

     :::bash
     minikube ip

References