In this class, we explored Kubernetes operations including viewing clusters, creating and managing pods, checking logs, and deploying scalable applications.

This screenshot shows how to check available Kubernetes clusters using kubectl.

This shows the command to list all running pods in the cluster.

This shows creation of a pod running an Nginx container.

This shows detailed information about the created pod including status and events.

This shows how to view logs of a running container inside the pod.

This shows creation of a Kubernetes deployment for managing pods.

This shows scaling the deployment to multiple replicas.
```bash
kubectl config get-clusters
kubectl get pods
kubectl run nginx-pod –image=nginx
kubectl describe pod nginx-pod
kubectl logs nginx-pod
kubectl create deployment my-deploy –image=nginx
kubectl scale deployment my-deploy –replicas=3