cozystack
cozystack copied to clipboard
ContainerStatusUnknown pods after talos upgrade
After eviction there are a lot of ContainerStatusUnknown pods especially in kube-ovn namespace.
Righ now they can be simple removed
kubectl get pod -A | grep ContainerStatusUnknown | awk '{print "kubectl delete pod -n " $1 " " $2 " --grace-period=0 --force --wait=false & " } END {print "wait"}' | sh -x
but we have to find a reason and fix the problem