Browse Source

added ability to pull groups from cert

master
HMSheets 3 years ago
parent
commit
7132da591c
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      update-NebulaNodeCert

+ 3
- 1
update-NebulaNodeCert View File

@@ -35,6 +35,8 @@ set -- "${POSITIONAL[@]}" # restore positional parameters

NODENAME=$(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s .[].details.name | sed 's/["]//g')
NODEIPS=$(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s --compact-output .[].details.ips | sed 's/[]["]//g')
NODEGROUPS=($(${NEBULACERTBINPATH} print -path ${CERTPATH} -json | jq -s --compact-output .[].details.groups | sed 's/[]["]//g' | sed 's/./ /g'))

echo "Node Name: ${NODENAME}"
echo "Node IPs: ${NODEIPS}"
echo "Node IPs: ${NODEIPS}"
echo "Node Groups: ${NODEGROUPS}"

Loading…
Cancel
Save