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:

Pod Security Policies (PSPs) and admission controllers define constraints on Pod behavior to enhance security.

Example Pod Security Policy:

apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:
  name: restricted
spec:
  privileged: false
  allowPrivilegeEscalation: false
  runAsUser:
    rule: MustRunAsNonRoot
  seLinux:
    rule: RunAsAny
  supplementalGroups:
    rule: MustRunAs
    ranges:
    - min: 1
      max: 65535
  fsGroup:
    rule: MustRunAs
    ranges:
    - min: 1
      max: 65535
  volumes:
  - 'configMap'

Steps:

  1. Enable the PSP admission controller:

    --enable-admission-plugins=PodSecurityPolicy
  2. Apply the PSP:

    kubectl apply -f psp-restricted.yaml
  3. Assign the policy to a Role or ClusterRole.

Activity:

Create and enforce a Pod Security Policy to prevent privileged Pod execution.


IT Vizag
Logo