You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »


Install kubectl

> brew install kubectl


Enabling shell autocompletion

> brew install bash-completion

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


Minikube

Error rendering macro 'excerpt-include'

You can only link to a page or blog post.

Minikube 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



References

  • No labels