Skip to main content
Kubernetes has become the de facto platform for running cloud-native applications and is often referred to as the “Linux of the cloud.” As AI services scale, Kubernetes plays a central role powering platforms like Poe, Anthropic’s Claude, ChatGPT, and many other AI-driven products. Demand for Kubernetes expertise continues to grow — a 2022 Indeed survey reported Kubernetes as the fastest-growing job search term (173% year-over-year), and that momentum carried through 2023 and 2024.
A slide from an Indeed survey showing ranked tech skills by year-over-year job search growth, with Kubernetes #1 at 173% growth. The list highlights fast-growing cloud and e-commerce skills like Magento, Verilog, Golang and others.
This course focuses on building practical autoscaling skills for Kubernetes so you can demonstrate credibility and value in production environments. I’m Michael Forrest, and I will guide you through core autoscaling concepts, architectures, and hands-on labs designed to help you experiment, iterate, and learn by doing.
Ensure your kubectl is configured to point at a working Kubernetes cluster before attempting the lab commands used in this lesson.
To inspect API server flags (for example, admission-related flags) on a control-plane pod, you can run:
Course roadmap
  • Manual scaling — develop intuition for how workloads react to replica changes and pod lifecycle events.
  • Horizontal Pod Autoscaler (HPA) — automation for scaling replicas based on CPU, memory, custom metrics, and external metrics.
  • Vertical Pod Autoscaler (VPA) — adjust pod resource requests and limits with recommendations or automated updates.
  • Cluster Proportional Autoscaler (CPA) — scale control-plane or infrastructure controller replicas proportionally to cluster size.
  • KEDA — event-driven autoscaling for external event sources (queues, cron, Redis, etc.).
Course roadmap (summary table) Manual scaling and pods Manually scaling deployments and inspecting pod status is the first hands-on step. Use kubectl to observe how pods are created, initialized, and become ready.
A split-screen image: the left side is a slide titled "Kubernetes Autoscaling" listing options (Manual Scaling, HPA, VPA, CPA, KEDA), and the right side shows a bearded man in a purple "KodeKloud" shirt speaking into a microphone.
Horizontal Pod Autoscaler (HPA) The HPA automates replica scaling based on observed metrics. In this course you’ll learn:
  • The HPA control loop and how it queries metrics providers.
  • Native HPA using resource metrics (CPU/memory) via metrics-server.
  • Custom and external metrics via adapters (Prometheus Adapter, custom metrics API).
  • Installation requirements and debugging steps (how to verify metrics, HPA events, and controller behavior).
A presentation slide titled "HPA Architecture Framework" showing CPU and Memory icons inside a rounded box labeled "Traditional/Native HPA." A small circular video thumbnail of a presenter appears in the bottom-right corner.
Vertical Pod Autoscaler (VPA) VPA focuses on right-sizing pods by providing resource recommendations and (optionally) updating pod resource requests. Key points covered:
  • VPA architecture and how it samples resource usage over time.
  • updateMode behavior: Off (recommendations only), Auto (apply), Initial (set only at pod creation).
  • Resource policies for fine-grained control per container.
Example VPA manifest:
VPA is most useful when you need to increase per-pod resources (CPU/memory) rather than changing replica counts — for example, stateful workloads or pods where vertical tuning yields better performance. Cluster Proportional Autoscaler (CPA) CPA scales controller replicas (such as controllers for DaemonSets or infrastructure components) proportionally to the cluster — by node count or aggregate CPU. Labs include ladder configurations and demonstrate how CPA handles priorities and preemption. Example ladder configuration (YAML containing JSON for the ladder payload):
KEDA — Kubernetes Event-Driven Autoscaling KEDA integrates with Kubernetes to enable autoscaling from external event sources and schedulers. You’ll build demos that trigger scaling from Redis queues, cron schedules, and other event sources using KEDA scalers.
A presentation slide titled "KEDA – Introduction" showing the KEDA logo above three feature cards labeled "Event-driven Autoscaler," "External events, volume based," and "Kubernetes-native integration." A small circular webcam overlay with a speaker appears in the lower-right corner.
Each section blends theory with practical labs so you can design, deploy, and operate advanced autoscaling strategies in real clusters. Labs are intentionally hands-on to encourage experimentation, troubleshooting, and learning from mistakes. Community and next steps Join the KodeKloud community to ask questions, share discoveries, and collaborate with other learners — community engagement accelerates learning and deepens practical understanding. Now that the course outline is set, proceed to the first lab to practice manual scaling and get comfortable with kubectl workflows. Links and References

Watch Video