k8s 批量删除 状态为 Terminating 的 pod(强制删除)

k8s 批量删除 状态为 Terminating 的 pod(强制删除)

kubectl  get pods | grep Terminating | awk '{print $1}' | xargs kubectl  delete pod --force --grace-period=0

你可能感兴趣的:(kubernetes,java,容器)