Environment Setup in Mac :
- kubctl : It is a command line tool that helps to connect to K8S Cluster. Run the following command -
brew install kubectl
After installation check the version with the following command -
kubectl version
- Hyperkit : Install a Hypervisor
brew install hyperkit
See the installations done already using the command -
brew list
- Minikube : Minikube is a tool that helps to run K8S Cluster in local machine. It runs Single Node K8S cluster on local machine which eases the process of development. Install -
brew install minikube
Verify installation -
minikube version
Start Minikube(prerequisite - Docker Daemon should be up and running) -
minikube start
Status of Minikube -
minikube status
Check the Cluster Information -
kubectl cluster-info
Check nodes -
kubectl get nodes
Stop Minikube -
minikube stop
Delete cluster
minikube delete
Top comments (0)