Kubernetes — Basics¶
minikube is a tool that creates a Kubernetes cluster locally for testing purposes — a quick way to get a working cluster without needing real cluster infrastructure.
kubectl is the command-line tool used to manage that cluster (local ones like minikube, or a real one).
Start minikube:
Create a deployment from an image:
List all deployments:
List all pods:
List all services:
List all ReplicaSets:
List everything at once:
Apply a manifest file to the cluster:
Show detailed information about a specific pod: