On this page
Kubernetes Operations Manual
Kubernetes is a container orchestration platform. Core concepts: pod (smallest scheduling unit), deployment (declarative pod management), service (stable network entry point), ingress (L7 routing), configmap/secret (configuration injection), namespace (resource isolation).
View
# Nodes
# Pods
# Describe (most common debugging command: check Events to see where it's stuck)
# Events interpretation:
# FailedScheduling → Insufficient resources or node affinity mismatch
# Failed to pull image → Wrong image name/version or registry unreachable
# CrashLoopBackOff → Container exits immediately after startup (check logs)
# Logs
# Other resources
Operations
Debugging
# Pod won't start: check Events
|
# View full YAML (including defaults + runtime state)
# Temporary debugging container
# RBAC permission check