Skip to content

Instantly share code, notes, and snippets.

@jstangroome
Created November 20, 2024 03:23
Show Gist options
  • Save jstangroome/a3e1012476366f9cf01fe1efc244d8d0 to your computer and use it in GitHub Desktop.
Save jstangroome/a3e1012476366f9cf01fe1efc244d8d0 to your computer and use it in GitHub Desktop.
kubectl-evict.sh
evict_pod () {
local ns="$1" pod="$2"
local rv
rv=$(
kubectl get pod -n "${ns}" "${pod}" --no-headers \
-o custom-columns=:metadata.resourceVersion
)
# NOTE: apiVersion becomes "policy/v1" from k8s v1.22
kubectl create -f - <<EOF --raw /api/v1/namespaces/"${ns}"/pods/"${pod}"/eviction
{
"apiVersion": "policy/v1beta1",
"kind": "Eviction",
"metadata": {
"name": "${pod}"
},
"deleteOptions": {
"preconditions": {
"resourceVersion": "${rv}"
}
}
}
EOF
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment