Kubectl cheat-sheet
Just some random #kubectl commands for myself. I have tested these on 1.20 <> 1.25
Get all ingress logs (if your ingress is nginx)
kubectl logs -n ingress-nginx -l app.kubernetes.io/name=ingress-nginx
Get all logs from Deployment
kubectl logs deployment/<deployment> -n <namespace> --watch
Why is the pod stuck in “ContainerCreating”?
kubectl get events --sort-by=.metadata.creationTimestamp --watch
Restart your deployment, nice and clean
kubectl rollout restart deployment/<deployment> -n <namespace>
I'll add more when I find more usefull stuff
#linux #k8s #kubernetes #kubectl #ingress #nginx #deployment #logs