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:

Monitoring is crucial for understanding the health and performance of your Kubernetes cluster. In this lesson, you will set up and use tools like the Metrics Server and Prometheus.

Metrics Server:

  1. What is Metrics Server?

    • A lightweight aggregator that provides resource usage data (CPU, memory) for Pods and Nodes.

  2. Install Metrics Server:

    kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
  3. Verify Installation:

    kubectl top nodes
    kubectl top pods

Prometheus:

  1. What is Prometheus?

    • A powerful monitoring and alerting toolkit commonly used with Kubernetes.

  2. Deploy Prometheus:

    • Use Helm to install Prometheus:

      helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
      helm repo update
      helm install prometheus prometheus-community/prometheus
  3. Access Prometheus Dashboard:

    • Forward the Prometheus server port:

      kubectl port-forward deploy/prometheus-server 9090
    • Open http://localhost:9090 in your browser.

Activity:

Install the Metrics Server and Prometheus in your cluster. Use kubectl top and Prometheus queries to monitor resource usage.


IT Vizag
Logo