Skip to content

Initialize Kubernetes class repository with comprehensive curriculum and resources - #1

Draft
BalericaAI with Copilot wants to merge 3 commits into
mainfrom
copilot/update-kubernetes-class-content
Draft

Initialize Kubernetes class repository with comprehensive curriculum and resources#1
BalericaAI with Copilot wants to merge 3 commits into
mainfrom
copilot/update-kubernetes-class-content

Conversation

Copilot AI commented Dec 23, 2025

Copy link
Copy Markdown

Set up complete educational repository for teaching Kubernetes fundamentals through advanced topics.

Content Structure

  • 8 progressive lessons (~80KB): Introduction → Architecture → Pods/Deployments → Services/Networking → ConfigMaps/Secrets → Volumes/Storage → StatefulSets/DaemonSets → Jobs/CronJobs
  • Hands-on exercises: First deployment, ConfigMaps/Secrets management
  • Production examples: Full web app stack with ConfigMap, Secret, Service, Ingress manifests
  • Setup guide: Minikube, Kind, Docker Desktop, K3s installation paths
  • Resources: Best practices, troubleshooting patterns, curated learning materials

Repository Layout

kubernetesclass/
├── lessons/          # 8 markdown lessons with code examples
├── examples/         # Production-ready YAML manifests
│   └── web-app/     # Complete application deployment
├── exercises/        # Step-by-step practice scenarios
├── resources/        # Best practices and external resources
└── setup/           # Local environment configuration

Each lesson includes:

  • Conceptual overview with architecture diagrams (ASCII)
  • Working YAML examples
  • kubectl commands for hands-on practice
  • Troubleshooting guidance
  • Links to next lesson

Example Lesson Structure

From lessons/03-pods-deployments.md:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-deployment
spec:
  replicas: 3
  selector:
    matchLabels:
      app: nginx
  template:
    spec:
      containers:
      - name: nginx
        image: nginx:1.21
        resources:
          requests:
            memory: "64Mi"
            cpu: "100m"

Followed by progressive concepts: multi-container pods → probes → rolling updates → rollbacks.

Original prompt

This is a repo devoted towards a Kubernetes class.


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 2 commits December 23, 2025 17:32
Co-authored-by: BalericaAI <212149723+BalericaAI@users.noreply.github.com>
Co-authored-by: BalericaAI <212149723+BalericaAI@users.noreply.github.com>
Copilot AI changed the title [WIP] Update content for Kubernetes class Initialize Kubernetes class repository with comprehensive curriculum and resources Dec 23, 2025
Copilot AI requested a review from BalericaAI December 23, 2025 17:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants