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