Skip to content

Instantly share code, notes, and snippets.

@mrclrchtr
Last active March 20, 2024 02:11
Show Gist options
  • Save mrclrchtr/c85eb1322c6a7a486139c858883f922d to your computer and use it in GitHub Desktop.
Save mrclrchtr/c85eb1322c6a7a486139c858883f922d to your computer and use it in GitHub Desktop.
Remove finalizers and delete CRDs
kubectl get crd | \
grep longhorn | \
perl -anle 'print $F[0]' | \
while read -r crd ;
do
kubectl patch crd "$crd" -p '{"metadata":{"finalizers":null}}';
kubectl delete crd "$crd";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment