Versions Compared

Key

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

Install kubectl

> brew install kubectl


Enabling shell autocompletion

> brew install bash-completion

> kubectl completion bash > $(brew --prefix)/etc/bash_completion.d/kubectl

Minikube


Install Minikube

Excerpt Includehttps://kubernetes.io/docs/getting-started-guides/minikube/#installationhttps://kubernetes.io/docs/getting-started-guides/minikube/#installationMinikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a single-node Kubernetes cluster inside a VM on your laptop for users looking to try out Kubernetes or develop with it day-to-day.


Install  minikube

> curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.26.1/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/


Start minikube

> minikube start


Other commands:

Command (minikube <command>Description
startStart minikube cluster
stopStop minikube cluster
statusGet status of minikube
dashboard

Opens/displays the kubernetes dashboard URL for your local cluster

ssh

Log into or run a command on a machine with SSH; similar to 'docker-machine ssh'

helpDisplay help


References