aboutsummaryrefslogtreecommitdiffstats
path: root/framework/scripts/installer/fuel/fuel-plugin-onos/deployment_scripts/puppet/modules/onos/templates/cluster.json.erb
blob: 7ca41733a752a1669b696efaa1e81300f5ec1eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{"ipPrefix": "192.168.0.*",
  "nodes": [
	<% index = 1 -%>
	<%- @manager_ip.each do |ip|  -%>
        <%- if index == @manager_ip.size -%>
        {
        "ip": "<%= ip -%>",
        "id": "<%= ip -%>",
        "tcpPort": 9876
        }
        <%- else -%>
        {
        "ip": "<%= ip -%>",
        "id": "<%= ip -%>",
        "tcpPort": 9876
   	},
        <%- end -%>
        <%- index = index + 1 -%>
        <%- end -%>
]}