kubectl

Updated: 23 February 2025

View a list of deployments

kubectl get deployment

View services

kubectl get services

View a list of pods

kubectl get pods

View application logs for a container in a pod

kubectl logs hello-node-5f76cf6ccf-br9b5

View cluster events

kubectl get events

Clean up resources created for a cluster

kubectl delete service hello-node
kubectl delete deployment hello-node

Leave a comment