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

Networking Model:

  1. Pod-to-Pod Communication:

    • Every Pod gets a unique IP.

    • Pods can communicate with each other directly within the cluster.

  2. Service Networking:

    • Services provide stable endpoints for accessing Pods.

  3. DNS:

    • Kubernetes provides an internal DNS service to resolve Service names to their cluster IPs.

  4. Ingress:

    • Manages external HTTP/S access to Services.

    • Example Ingress YAML manifest:

      apiVersion: networking.k8s.io/v1
      kind: Ingress
      metadata:
        name: example-ingress
      spec:
        rules:
        - host: example.com
          http:
            paths:
            - path: /
              pathType: Prefix
              backend:
                service:
                  name: my-service
                  port:
                    number: 80
  5. Network Policies:

    • Define rules for traffic flow between Pods.

    Example NetworkPolicy YAML manifest:

    apiVersion: networking.k8s.io/v1
    kind: NetworkPolicy
    metadata:
      name: allow-frontend
    spec:
      podSelector:
        matchLabels:
          app: frontend
      policyTypes:
      - Ingress
      ingress:
      - from:
        - podSelector:
            matchLabels:
              app: backend

Activity:

Deploy a sample Ingress resource to expose a Service externally. Test it by accessing the Service from a web browser or curl command.

IT Vizag
Logo