-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
# Define the label key and value you want to search for | ||
LABEL=${NODE_LABEL:-} | ||
|
||
# Use `kubectl` to get the node name by label | ||
NODE_NAMES=$(kubectl get nodes --selector="$LABEL" -o custom-columns=NAME:.metadata.name --no-headers) | ||
|
||
|
||
if [ -z "$NODE_NAMES" ]; then | ||
echo "No nodes found with the label $LABEL_KEY=$LABEL_VALUE." | ||
exit 1 | ||
fi | ||
|
||
for NODE_NAME in $NODE_NAMES; do | ||
echo "Running command on node: $NODE_NAME" | ||
kubectl node_shell $NODE_NAME -- reboot | ||
done |