kubectl get pod logs code example

Example 1: kubectl delete all pods

kubectl delete --all pods

Example 2: kubectl get pods

# Get pods in default namespace
kubectl get pods

#Get Pods in my-namespace
kubectl get pods -n my-namespace

#Get Pods in all namespaces
kubectl get pods --all-namespaces

Example 3: find logs in kubernetes pods

kubectl logs elasticsearch-master-1 --since=2m --timestamps

Example 4: kubernetes get logs from pod

kubectl logs <pod-name>

Example 5: kubectl get logs of deployment

kubectl logs -f deployment/<name-of-deployment>
or
kubectl logs deployment/<name-of-deployment>