View on GitHub

learning-cloud-k8s

Notes and steps documented while learning k8s

Go To Home

Go To Previous Step (Docker Setup)

Setup minikube on Ubuntu

Prerequisites

Machine environment

Local environment might matter for some shell commands

Setup steps

All commands mentioned in the guide are executed inside post doing SSH into AWS EC2 ubuntu instance

  1. Download and install minikube
    curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
    sudo install minikube-linux-amd64 /usr/local/bin/minikube
    
  2. Start minikube cluster
    minikube start
    

References

Just a couple of steps are mentioned here to show how simple it’s to start a minikube cluster. There are many commands, most of which are executed using kubectl.

Follow minikube start for details.

Go To Next Step (Kubectl Setup)