Add nodes.sh script to generate node csv
Change-Id: I667f071ab59b77bd107c1388bf42876202857480
This commit is contained in:
parent
1173d6c282
commit
8ec7053f3d
20
nodes.sh
Executable file
20
nodes.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
set -eux
|
||||
|
||||
OUTPUT_FILE=${OUTPUT_FILE:-"nodes.csv"}
|
||||
NODES_JSON_FILE=${NODES_JSON_FILE:-"/home/stack/instackenv.json"}
|
||||
|
||||
NUM_NODES=$(jq '.nodes | length' $NODES_JSON_FILE)
|
||||
|
||||
if [ -e $OUTPUT_FILE ]; then
|
||||
rm $OUTPUT_FILE
|
||||
fi
|
||||
|
||||
for i in $(seq 0 $(expr $NUM_NODES - 1)); do
|
||||
DRIVER=$(jq -r ".nodes[${i}] | .[\"pm_type\"]" $NODES_JSON_FILE)
|
||||
SSH_ADDRESS=$(jq -r ".nodes[${i}] | .[\"pm_addr\"]" $NODES_JSON_FILE)
|
||||
SSH_USERNAME=$(jq -r ".nodes[${i}] | .[\"pm_user\"]" $NODES_JSON_FILE)
|
||||
SSH_KEY_CONTENTS=$(jq -r ".nodes[${i}] | .[\"pm_password\"]" $NODES_JSON_FILE)
|
||||
MAC=$(jq -r ".nodes[${i}] | .mac[0]" $NODES_JSON_FILE)
|
||||
echo "${DRIVER},${SSH_ADDRESS},${SSH_USERNAME},\"${SSH_KEY_CONTENTS}\",${MAC}" >> $OUTPUT_FILE
|
||||
done
|
Loading…
Reference in New Issue
Block a user