aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/onos/templates/tablets.json
diff options
context:
space:
mode:
authorshuai chen <chenshuai@huawei.com>2015-09-25 07:58:41 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-09-25 07:58:41 +0000
commit07d9d16da9452fb64fd6adb3ebf2cafc9de8dfa8 (patch)
treed81ef065f1140facc3cbc43d18f433f825ccccba /deploy/adapters/ansible/roles/onos/templates/tablets.json
parent47cfbaa9070f5a12272627ff3648e28388f279f5 (diff)
parent33750b090ff8f59c8e346b642aff8cf5cdfd1cc5 (diff)
Merge "update onos ansible scriptes"
Diffstat (limited to 'deploy/adapters/ansible/roles/onos/templates/tablets.json')
-rwxr-xr-xdeploy/adapters/ansible/roles/onos/templates/tablets.json63
1 files changed, 0 insertions, 63 deletions
diff --git a/deploy/adapters/ansible/roles/onos/templates/tablets.json b/deploy/adapters/ansible/roles/onos/templates/tablets.json
deleted file mode 100755
index f71be71f..00000000
--- a/deploy/adapters/ansible/roles/onos/templates/tablets.json
+++ /dev/null
@@ -1,63 +0,0 @@
-{
- "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 %}
-}
-}