Create a local development kubernetes cluster and swith between local and remote clusters
$ apt install minikube # To install Minikube
$ minikube delete # To reset Minikube
$ minikube start --driver=docker # Start Minikube with Docker driver
$ kubectl cluster-info # To display the current cluster and its IP
$ kubectl config current-context # To list the default cluster
minikube
$kubectl config get-contexts # To list available clusters local and remote
CURRENT NAME CLUSTER AUTHINFO NAMESPACE
remote-cluster remote-cluster remote-cluster-admin
* minikube minikube minikube default
$ kubectl config remote-cluster
$ kubectl get nodes
$ alias kminikube="kubectl config use-context minikube" # To easily switch to local
$ alias kremote="kubectl config use-context remote-cluster" # # To easily switch to remote
$source ~/.bashrc # To apply changes in the terminal
Comments
Post a Comment