Posts

Showing posts from July, 2019

Minikube Installation Guide

Troubleshoot kubectl version incompatibility Follow these steps to run Minikube on your mac Install Docker Install VirtualBox Install Kubectl Install Minikube Install docker on Mac docker_installation.sh brew cask install docker Install VirtualBox latest version 6.x and above Check the VirtualBox version virtualbox_version.sh $ echo $(virtualbox --help | head -n 1 | awk '{print $NF}') vb.sh brew cask uninstall --force virtualbox brew cask install virtualbox Install Kubectl kubectl.sh brew install kubernetes-cli (1) 1 Refer troubleshooting sections about version issues. Install Minikube v1.0.1 Make sure you delete older versions , if you have issue with minikube dashboard delete.sh minikube delete minikube_installation.sh curl -Lo minikube https://storage.googleapis.com/minikube/releases/v1.0.1/minikube-darwin-amd64 && chmod +x minikube && sudo cp minikube /usr/local/bi