Release V2.19.3 #41

Merged
stefan merged 11 commits from master into stable 2021-04-16 20:32:55 +00:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit e7236e461b - Show all commits

8
scripts/exec_each_node.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
NODES=$(kubectl get nodes -o json | jq -rc .items[].status.addresses[0].address)
for n in $NODES; do
>&2 echo "Node: $n"
ssh -q $n "$@"
done