Course Content
Module 1: Introduction to Kubernetes
Objective: Understand the purpose of Kubernetes and its role in managing containerized applications.
0/5
Final Module: Capstone Project
Project Description: This capstone project challenges you to apply the Kubernetes concepts and techniques you’ve learned throughout this course. You will deploy a production-grade application that integrates key features, including scaling, monitoring, logging, and security, while ensuring high availability and performance.
0/8
Mastering Kubernetes: Orchestrating Containerized Applications
About Lesson

Overview:

Horizontal Pod Autoscaling (HPA) automatically adjusts the number of Pods in a deployment based on resource utilization or custom metrics.

Key Concepts:

  1. HPA Metrics:

    • CPU utilization

    • Memory usage

    • Custom metrics (via Prometheus Adapter)

  2. HPA Workflow:

    • Monitor metrics

    • Trigger scaling events

Steps to Enable HPA:

  1. Ensure Metrics Server is Installed:

    kubectl get deployment metrics-server -n kube-system
  2. Create a Deployment:

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx-deployment
    spec:
      replicas: 2
      selector:
        matchLabels:
          app: nginx
      template:
        metadata:
          labels:
            app: nginx
        spec:
          containers:
          - name: nginx
            image: nginx
            resources:
              requests:
                cpu: "200m"
                memory: "200Mi"
              limits:
                cpu: "500m"
                memory: "500Mi"
    kubectl apply -f nginx-deployment.yaml
  3. Create an HPA Resource:

    kubectl autoscale deployment nginx-deployment --cpu-percent=50 --min=1 --max=5
  4. View HPA Status:

    kubectl get hpa

Activity:

Deploy an application and configure HPA to automatically scale Pods based on CPU usage.

IT Vizag
Logo