Back to Labs
Kubernetes Pod BasicsEasy
Kubernetes
👥 45 users10 min100 points

Deploy your first pod and inspect its status using kubectl.

Instructions

  1. Create a YAML manifest for a simple nginx pod.
  2. Apply the manifest using kubectl.
  3. Check the pod status and logs.

Prerequisites

  • Basic kubectl usage
  • Kubernetes cluster access

Hints

  • Use 'kubectl apply -f <file>.yaml' to create resources.
  • Check pod status with 'kubectl get pods'.
  • View logs with 'kubectl logs <pod-name>'.

Try it yourself!