Back to LabsKubernetes Pod BasicsEasy
Kubernetes
👥 45 users⏱ 10 min100 points
Deploy your first pod and inspect its status using kubectl.
Instructions
- Create a YAML manifest for a simple nginx pod.
- Apply the manifest using kubectl.
- 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!