aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/package/bin/onos-form-cluster
blob: 7a0abda67e27ec9ba2a1a36d7fca8ff3f7d51407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# -----------------------------------------------------------------------------
# Forms ONOS cluster using REST API of each separate instance.
# -----------------------------------------------------------------------------

[ $# -lt 2 ] && echo "usage: $(basename $0) ip1 ip2..." && exit 1

# Scan arguments for user/password or other options...
while getopts u:p: o; do
    case "$o" in
        u) user=$OPTARG;;
        p) password=$OPTARG;;
    esac
done
user=${user:-onos}           # user defaults to 'onos'
password=${password:-$user}  # password defaults to user name if not specified
let OPC=$OPTIND-1
shift $OPC

ip=$1
shift
nodes=$*

ipPrefix=${ip%.*}

aux=/tmp/${ipPrefix}.cluster.json
trap "rm -f $aux" EXIT

echo "{ \"nodes\": [ { \"ip\": \"$ip\" }" > $aux
for node in $nodes; do
    echo ", { \"ip\": \"$node\" }" >> $aux
done
echo "], \"ipPrefix\": \"$ipPrefix.*\" }" >> $aux

for node in $ip $nodes; do
    echo "Forming cluster on $node..."
    curl --user $user:$password -X POST \
        http://$node:8181/onos/v1/cluster/configuration -d @$aux
done