Created
November 20, 2024 03:23
-
-
Save jstangroome/a3e1012476366f9cf01fe1efc244d8d0 to your computer and use it in GitHub Desktop.
kubectl-evict.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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