Skip to content

Kubernetes Overview

Learn about pods, deployments, services, and ConfigMaps.

Example: Create a Pod

Run a simple Nginx pod:

kubectl run nginx --image=nginx --restart=Never
kubectl get pods