diff options
author | juraj.linkes <jlinkes@cisco.com> | 2017-09-21 11:33:49 +0200 |
---|---|---|
committer | juraj.linkes <jlinkes@cisco.com> | 2017-09-21 11:33:49 +0200 |
commit | f5e75a40dd663fd42645f5a334983ce519a697b6 (patch) | |
tree | db49a58ca157adb961487815d38224c4718e778d | |
parent | 32a97a1bab7b0ba8e1d00704030bb6925fc74293 (diff) |
Updated functest sim script
Change-Id: Iacfb7b801c75cb85fafff2ff3082266220f17525
Signed-off-by: juraj.linkes <jlinkes@cisco.com>
-rwxr-xr-x | scripts/functest_sim.sh | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/scripts/functest_sim.sh b/scripts/functest_sim.sh index 5c22e64..5bdded2 100755 --- a/scripts/functest_sim.sh +++ b/scripts/functest_sim.sh @@ -1,9 +1,17 @@ +############################################################################## +# Copyright (c) 2017 Juraj Linkes (Cisco) and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## #!/bin/bash # NETWORK AND SUBNET echo "Creating network with subnet" neutron net-create test-net neutron subnet-create --name test-subnet test-net 192.168.20.0/24 -net_id=`neutron net-list | grep test-net | cut -f 2 -d " "` +net_id=$(neutron net-list | grep test-net | cut -f 2 -d " ") # ATTACH NETWORK TO ROUTER echo "Attaching external and tenant networks to router" @@ -32,5 +40,8 @@ nova add-secgroup test-vm2 test-secgroup # FLOATING IP echo "Creating and associating floating IP for the first VM" -floatingip_id=`neutron floatingip-create external | grep " id " | tr -s " " | cut -f 4 -d " "` -neutron floatingip-associate $floatingip_id `neutron port-list | grep 192.168.20.3 | cut -d " " -f 2` +floatingip_id=$(neutron floatingip-create external | grep " id " | + tr -s " " | cut -f 4 -d " ") +neutron floatingip-associate $floatingip_id $(neutron port-list | + grep $(nova show test-vm1 | grep "test-net network" | + grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+") | cut -d " " -f 2) |