Skip to content

Instantly share code, notes, and snippets.

@abdennour
Created September 7, 2019 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdennour/e11f1aa4ad7c39dc43db1eff19f2925c to your computer and use it in GitHub Desktop.
Save abdennour/e11f1aa4ad7c39dc43db1eff19f2925c to your computer and use it in GitHub Desktop.
Scripts for Maintaining Kubernetes Nodes
#!/bin/bash
node=${1};
k uncordon ${node}
#!/bin/bash
node=${1};
k drain ${node} --ignore-daemonsets --force --delete-local-data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment