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:

Scaling in Kubernetes allows you to adjust the number of replicas of a Pod to handle changes in workload.

Manual Scaling:

  1. Scale a Deployment:

    kubectl scale deployment my-app-deployment --replicas=5
  2. Verify Scaling:

    kubectl get pods

Autoscaling:

  1. Enable the Metrics Server:

    • Install the Metrics Server:

      kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
  2. Create a Horizontal Pod Autoscaler (HPA):

    • Example HPA YAML manifest:

      apiVersion: autoscaling/v1
      kind: HorizontalPodAutoscaler
      metadata:
        name: my-app-hpa
      spec:
        scaleTargetRef:
          apiVersion: apps/v1
          kind: Deployment
          name: my-app-deployment
        minReplicas: 2
        maxReplicas: 10
        targetCPUUtilizationPercentage: 50
    • Apply the HPA:

      kubectl apply -f hpa.yaml
  3. Verify Autoscaling:

    kubectl get hpa

Activity:

Create and apply an HPA for your Nginx Deployment. Simulate a load and observe the scaling behavior.

IT Vizag
Logo