I hereby claim:
- I am drubin on github.
- I am drubin (https://keybase.io/drubin) on keybase.
- I have a public key ASCwI3b0bW5U2DpOQGjQIeLERt1Mbwzlo1nuz0r4aWBNgQo
To claim this, I am signing this object:
| FROM nginx:1.15.6-alpine |
| #!/bin/bash -e | |
| # Cordons and drains a node pool | |
| display_usage() { | |
| echo "Cordons and drains a nodepool" | |
| echo -e "\nUsage:\n ./cordon-drain-pool [nodepool-name] " | |
| echo -e " ./cordon-drain-pool pool-1 \n" | |
| } | |
| if [ $# -le 1 ] | |
| then |
| // Replace this list with the result of to-run-on-org-page.js | |
| // And remember to do an "npm install" | |
| var users = ["voxpelli"]; | |
| var https = require('https'); | |
| var fs = require('fs'); | |
| var exec = require('child_process').exec; | |
| var tmp = require('temporary-directory') | |
| var cuid = require('cuid'); | |
| var chalk = require('chalk'); |
I hereby claim:
To claim this, I am signing this object:
Clean remote branches
git remote prune origin
Clean branches already merged into master
git checkout master
for k in $(git branch -a --merged|grep -v "\->"|sed s/^..//);do echo -e $(git branch -d "$k");done