Kubernetes
intermediate
~14 hours

Basic Kubernetes

Deploy workloads on Kubernetes: pods, services, storage, and autoscaling fundamentals.

Learning objectives

  • Kubernetes Fundamentals
  • Deployments & Services
  • Storage & Configuration
  • Monitoring & Scaling

Prerequisites: Basic computer literacy; prior Kubernetes exposure helpful.

Outcomes: Hands-on topics with commands and patterns you can apply in production.

Chapter 1: Kubernetes Fundamentals

Architecture Overview

Control plane schedules work; worker nodes run kubelet and container runtime.

Note: Expand this section with your own examples and production notes.

Nodes, Pods, Services

Pods are the smallest deployable unit; Services provide stable networking.

Note: Expand this section with your own examples and production notes.

Master Components

API server, etcd, scheduler, and controller-manager coordinate cluster state.

Note: Expand this section with your own examples and production notes.

Chapter 2: Deployments & Services

Creating Deployments

Deployments manage ReplicaSets for rolling updates.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: api
spec:
  replicas: 3
  selector:
    matchLabels:
      app: api
Note: Expand this section with your own examples and production notes.

Service Types

ClusterIP for internal traffic; NodePort and LoadBalancer expose externally.

Note: Expand this section with your own examples and production notes.

Network Policies

Restrict pod-to-pod traffic with label selectors.

Note: Expand this section with your own examples and production notes.

Chapter 3: Storage & Configuration

Persistent Volumes

PVs and PVCs decouple storage from pod lifecycle.

Note: Expand this section with your own examples and production notes.

ConfigMaps & Secrets

Externalize config; never commit secrets to Git.

Note: Expand this section with your own examples and production notes.

StatefulSets

Ordered deploy and stable network IDs for databases.

Note: Expand this section with your own examples and production notes.

Chapter 4: Monitoring & Scaling

Horizontal Pod Autoscaling

HPA scales replicas based on CPU or custom metrics.

Note: Expand this section with your own examples and production notes.

Resource Monitoring

Use metrics-server; export to Prometheus and Grafana.

Note: Expand this section with your own examples and production notes.

Logging

Centralize with Fluent Bit or Loki; correlate by pod labels.

Note: Expand this section with your own examples and production notes.

Quick answer

Basic Kubernetes: Deploy workloads on Kubernetes: pods, services, storage, and autoscaling fundamentals. Free intermediate course (~14h) from Skillzmist.

Entity: Basic Kubernetes — optimized for AI search extraction (ChatGPT, Gemini, Claude, Perplexity).

Key takeaways

  • Kubernetes Fundamentals
  • Deployments & Services
  • Storage & Configuration
  • Monitoring & Scaling

Course FAQ

13 answers
WhatWhat will I learn in Basic Kubernetes?

Deploy workloads on Kubernetes: pods, services, storage, and autoscaling fundamentals.

HowWhat does chapter "Kubernetes Fundamentals" cover in Basic Kubernetes?

Chapter 1 (Kubernetes Fundamentals) includes: Architecture Overview; Nodes, Pods, Services; Master Components.

WhatWhat is "Architecture Overview" in Basic Kubernetes?

Control plane schedules work; worker nodes run kubelet and container runtime. Note: Expand this section with your own examples and production notes.

WhatWhat is "Nodes, Pods, Services" in Basic Kubernetes?

Pods are the smallest deployable unit; Services provide stable networking. Note: Expand this section with your own examples and production notes.

HowWhat does chapter "Deployments & Services" cover in Basic Kubernetes?

Chapter 2 (Deployments & Services) includes: Creating Deployments; Service Types; Network Policies.

WhatWhat is "Creating Deployments" in Basic Kubernetes?

Deployments manage ReplicaSets for rolling updates. apiVersion: apps/v1 kind: Deployment metadata: name: api spec: replicas: 3 selector: matchLabels: app: api Note: Expand this section with your own examples and production notes.

WhatWhat is "Service Types" in Basic Kubernetes?

ClusterIP for internal traffic; NodePort and LoadBalancer expose externally. Note: Expand this section with your own examples and production notes.

HowWhat does chapter "Storage & Configuration" cover in Basic Kubernetes?

Chapter 3 (Storage & Configuration) includes: Persistent Volumes; ConfigMaps & Secrets; StatefulSets.

WhatWhat is "Persistent Volumes" in Basic Kubernetes?

PVs and PVCs decouple storage from pod lifecycle. Note: Expand this section with your own examples and production notes.

WhatWhat is "ConfigMaps & Secrets" in Basic Kubernetes?

Externalize config; never commit secrets to Git. Note: Expand this section with your own examples and production notes.

Show all 13 questions
HowWhat does chapter "Monitoring & Scaling" cover in Basic Kubernetes?

Chapter 4 (Monitoring & Scaling) includes: Horizontal Pod Autoscaling; Resource Monitoring; Logging.

WhatWhat is "Horizontal Pod Autoscaling" in Basic Kubernetes?

HPA scales replicas based on CPU or custom metrics. Note: Expand this section with your own examples and production notes.

WhatWhat is "Resource Monitoring" in Basic Kubernetes?

Use metrics-server; export to Prometheus and Grafana. Note: Expand this section with your own examples and production notes.