summaryrefslogtreecommitdiff
path: root/shell-scripts/get-sshables
diff options
context:
space:
mode:
Diffstat (limited to 'shell-scripts/get-sshables')
-rwxr-xr-xshell-scripts/get-sshables7
1 files changed, 0 insertions, 7 deletions
diff --git a/shell-scripts/get-sshables b/shell-scripts/get-sshables
deleted file mode 100755
index f67c23c..0000000
--- a/shell-scripts/get-sshables
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-set -euxo pipefail
-[[ -d ~/sshables ]] || mkdir -p ~/sshables
-
-for cluster in $(kubectl config get-clusters | tail -n +2); do
- [[ -f ~/sshables/$cluster ]] || { echo $cluster; kubectl --context $cluster get nodes -oname > ~/sshables/$cluster; }
-done