aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/onos_cluster/templates
diff options
context:
space:
mode:
authorchenshuai@huawei.com <chenshuai@huawei.com>2015-09-20 12:45:08 +0800
committerchenshuai@huawei.com <chenshuai@huawei.com>2015-09-20 12:46:50 +0800
commitab9c9cbd1c96611c5cbe56260a73524186bf72f1 (patch)
tree6510d4c72133a0f5ea1681e58650538995bcee7e /deploy/adapters/ansible/roles/onos_cluster/templates
parentfb0d6fc92a6286953e0985a68d317cd108cf8d4b (diff)
Write ONOS ansible script for Ubuntu14.04
JIRA: COMPASS-54 Change-Id: Icb0f0023681a0407bb987757171f72d70c1360f6 Signed-off-by: chenshuai@huawei.com <chenshuai@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/onos_cluster/templates')
-rwxr-xr-xdeploy/adapters/ansible/roles/onos_cluster/templates/cluster.json10
-rwxr-xr-xdeploy/adapters/ansible/roles/onos_cluster/templates/ml2_conf.sh7
-rwxr-xr-xdeploy/adapters/ansible/roles/onos_cluster/templates/tablets.json63
3 files changed, 80 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 %}
+]}
diff --git a/deploy/adapters/ansible/roles/onos_cluster/templates/ml2_conf.sh b/deploy/adapters/ansible/roles/onos_cluster/templates/ml2_conf.sh
new file mode 100755
index 00000000..8ec9ae11
--- /dev/null
+++ b/deploy/adapters/ansible/roles/onos_cluster/templates/ml2_conf.sh
@@ -0,0 +1,7 @@
+cat <<EOT>> /etc/neutron/plugins/ml2/ml2_conf.ini
+[ml2_onos]
+password = admin
+username = admin
+url_path = http://{{ ip_settings[groups['onos'][0]]['mgmt']['ip'] }}:8181/onos/vtn
+EOT
+
diff --git a/deploy/adapters/ansible/roles/onos_cluster/templates/tablets.json b/deploy/adapters/ansible/roles/onos_cluster/templates/tablets.json
new file mode 100755
index 00000000..f71be71f
--- /dev/null
+++ b/deploy/adapters/ansible/roles/onos_cluster/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 %}
+}
+}