diff --git a/_assets/scripts/update-fleet-config.sh b/_assets/scripts/update-fleet-config.sh index 935e2ddd8..c351710ab 100755 --- a/_assets/scripts/update-fleet-config.sh +++ b/_assets/scripts/update-fleet-config.sh @@ -15,6 +15,7 @@ for fleet in ${fleets[@]}; do fleetJSON=$(echo $json | jq ".fleets.\"$fleet\"") boot=$(echo $fleetJSON | jq ".boot | map(.)" -r) mail=$(echo $fleetJSON | jq ".mail | map(.)" -r) + rendezvous=$(echo $fleetJSON | jq ".rendezvous | map(.)" -r) # Get random nodes from whisper node list maxStaticNodeCount=2 @@ -23,7 +24,12 @@ for fleet in ${fleets[@]}; do whisper=$(echo $fleetJSON | jq ".whisper | map(.) | .[$index:($index + $maxStaticNodeCount)]" -r) git checkout $DIR/fleet-$fleet.json \ - && jq ".ClusterConfig.BootNodes = $boot | .ClusterConfig.TrustedMailServers = $mail | .ClusterConfig.StaticNodes = $whisper" $DIR/fleet-$fleet.json \ + && jq \ + ".ClusterConfig.BootNodes = $boot \ + | .ClusterConfig.TrustedMailServers = $mail \ + | .ClusterConfig.StaticNodes = $whisper \ + | .ClusterConfig.RendezvousNodes = $rendezvous" \ + $DIR/fleet-$fleet.json \ | tee "$DIR/tmp.json" >/dev/null \ && mv $DIR/tmp.json $DIR/fleet-$fleet.json done