Skip to main content

Posts

Showing posts from March, 2025

Create a local development kubernetes cluster and swith between local and remote clusters

 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     ...