Quick shell inside running pod
kubectl exec -it <pod_name> -- /bin/sh
Stream logs for specific container
kubectl logs -f <pod_name> -c <container>
Get all resources in all namespaces
kubectl get all -A
Port forward pod to localhost
kubectl port-forward pod/<pod_name> 8080:80
Force delete stuck pod
kubectl delete pod <pod> --grace-period=0 --force