aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/onos_cluster/templates/cluster.json
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/adapters/ansible/roles/onos_cluster/templates/cluster.json')
-rwxr-xr-xdeploy/adapters/ansible/roles/onos_cluster/templates/cluster.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/onos_cluster/templates/cluster.json b/deploy/adapters/ansible/roles/onos_cluster/templates/cluster.json
new file mode 100755
index 00000000..5982c434
--- /dev/null
+++ b/deploy/adapters/ansible/roles/onos_cluster/templates/cluster.json
@@ -0,0 +1,10 @@
+{ "ipPrefix": "{{ ip_settings[groups['onos'][0]]['mgmt']['cidr'] }}",
+ "nodes":[
+{% for host in groups['onos'] %}
+ {% if loop.last %}
+ { "id": "{{ ip_settings[host]['mgmt']['ip'] }}", "ip": "{{ ip_settings[host]['mgmt']['ip'] }}", "tcpPort": 9876 }
+ {% else %}
+ { "id": "{{ ip_settings[host]['mgmt']['ip'] }}", "ip": "{{ ip_settings[host]['mgmt']['ip'] }}", "tcpPort": 9876 },
+ {% endif %}
+{% endfor %}
+]}