kubectl logs code example
Example 1: kubectl delete all pods
kubectl delete --all pods
Example 2: kubectl list context
kubectl config get-contexts
Example 3: kubectl get pods
kubectl get pods
kubectl get pods -n my-namespace
kubectl get pods --all-namespaces
Example 4: kubectl get pod by node
kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=<node>
Example 5: kubectl restart deployment
kubectl rollout restart deployment yourDeploymentName
Example 6: kubectl get logs of deployment
kubectl logs -f deployment/<name-of-deployment>
or
kubectl logs deployment/<name-of-deployment>