From dcd27eccda9c29a8ce9b3c2804f831317d9ea066 Mon Sep 17 00:00:00 2001 From: "chenshuai@huawei.com" Date: Mon, 16 May 2016 16:11:57 +0800 Subject: ocl: add vgw router on jump server for functest and yardstick JIRA: COMPASS-391 Change-Id: I99120617282a27ed8b2d811ad00ae4d10adff93b Signed-off-by: chenshuai@huawei.com --- .../ansible/roles/open-contrail/tasks/ext-net.yml | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'deploy/adapters/ansible/roles/open-contrail') diff --git a/deploy/adapters/ansible/roles/open-contrail/tasks/ext-net.yml b/deploy/adapters/ansible/roles/open-contrail/tasks/ext-net.yml index 8f3e095d..3ef327ee 100644 --- a/deploy/adapters/ansible/roles/open-contrail/tasks/ext-net.yml +++ b/deploy/adapters/ansible/roles/open-contrail/tasks/ext-net.yml @@ -17,3 +17,31 @@ - name: add vgw router on compute(without vgw) for open-contrail shell: echo "ip route add {{ public_net_info.floating_ip_cidr }} via {{ ip_settings[groups['compute'][0]]['br-prv']['ip'] }} dev vhost0" >> /etc/init.d/net_init when: groups['opencontrail']|length !=0 and inventory_hostname not in groups['opencontrail'] and inventory_hostname != groups['compute'][0] + + + + + +# create a file with vgw ip on CompassCore, so that Jumper Host could access this to get vgw ip +- name: add vgw file on compass + local_action: file path=/home/opencontrail1.rc state=touch mode=0777 + run_once: True + when: groups['opencontrail']|length !=0 + +- name: update vgw file + local_action: lineinfile dest=/home/opencontrail1.rc line={{ ip_settings[groups['compute'][0]]['br-prv']['ip'] }} + run_once: True + when: groups['opencontrail']|length !=0 + +- name: add vgw file on compass + local_action: file path=/home/opencontrail2.rc state=touch mode=0777 + run_once: True + when: groups['opencontrail']|length !=0 + +- name: update vgw file + local_action: lineinfile dest=/home/opencontrail2.rc line={{ public_net_info.floating_ip_cidr }} + run_once: True + when: groups['opencontrail']|length !=0 + + + -- cgit 1.2.3-korg