aboutsummaryrefslogtreecommitdiffstats
path: root/framework/scripts/installer/fuel/fuel-plugin-onos/deployment_scripts/puppet/modules/onos/templates/tablets.json.erb
blob: de52967d3aed9945048c65f8f94c86e983cd6352 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
    "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 -%>
    	],
    "partitions": {
	<%- key = 1 -%>
        <%- @manager_ip.each do |ip| -%>
        <%- if key == @manager_ip.size -%>
        "p<%= key -%>":[
		<%- 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 -%>
        ]
        <%- key = key + 1 -%>
        <%- else -%>
        "p<%= key -%>":[
        <%- 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 -%>
        ],
        <%- key = key + 1 -%>
        <%- end -%>
        <%- end -%>
}
}