Demo workflow for Minikube
Photo by Shubham Dhage on Unsplash Photo by Shubham Dhage on Unsplash Here’s a ready-to-run “one-shot” demo workflow for Minikube that sets up a webserver deployment, exposes it, configures HPA, and generates load so you can see autoscaling in action immediately. You can copy-paste these commands one after the other in your terminal. Step 0: (Optional) Clean up old resources kubectl delete deployment webserver --ignore-not-found kubectl delete svc webserver --ignore-not-found kubectl delete hpa webserver --ignore-not-found kubectl delete pod load-generator --ignore-not-found ...