- 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
+
+
+
echo $TYPE
echo $DHA
if [[ `echo $HOST_ROLES | grep opencontrail` ]]; then
+ ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
+ installer_ip="192.168.200.2"
+ vgw_ip=$(sshpass -p 'root' ssh $ssh_options root@$installer_ip 'cat /home/opencontrail1.rc')
+ externet_cidr=$(sshpass -p 'root' ssh $ssh_options root@$installer_ip 'cat /home/opencontrail2.rc')
+ sudo ip route add $externet_cidr via $vgw_ip dev br-external 2>/dev/null
sleep 60
python ${COMPASS_DIR}/deploy/reset_compute.py $TYPE $DHA
sleep 600