Kubernetes – Commands
Getting Started Command Explanation minikube start –driver=virtualbox If you are not using Docker Desktop, minikube can help setup a cluster with Virtualbox as driver kubectl run hello-minikube –image=nginx Runs a Pod named hello-minikube with a nginx image. kubectl cluster-info Displays cluster information, including API server and core services URLs. kubectl run nginx –image=nginx –dry-run=client -o […]