From 5082ea69b089af9def79d8d79bab9cc8488236e9 Mon Sep 17 00:00:00 2001 From: "juraj.linkes" Date: Mon, 13 Mar 2017 17:27:18 +0100 Subject: Fixed typos and updated functest sim for Newton deployments Change-Id: I278f1327445793c5cf843e36c074c46c7b8fe89b Signed-off-by: juraj.linkes --- scripts/functest_sim.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/functest_sim.sh') diff --git a/scripts/functest_sim.sh b/scripts/functest_sim.sh index e328b50..5c22e64 100755 --- a/scripts/functest_sim.sh +++ b/scripts/functest_sim.sh @@ -6,7 +6,7 @@ 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 " "` # ATTACH NETWORK TO ROUTER -echo "Attaching external and tenant networks to reouter" +echo "Attaching external and tenant networks to router" neutron router-create test-router neutron router-interface-add test-router test-subnet neutron router-gateway-set test-router external @@ -19,7 +19,7 @@ nova secgroup-add-rule test-secgroup tcp 22 22 0.0.0.0/0 # FIRST VM echo "Creating first VM in the network and adding the security group to it" -nova boot --image cirros-0.3.4 --flavor 1 --nic net-id=$net_id test-vm1 +nova boot --image cirros-0.3.4 --flavor nfv --nic net-id=$net_id test-vm1 nova add-secgroup test-vm1 test-secgroup echo "Waiting 7 seconds for the VM to come up" @@ -27,7 +27,7 @@ sleep 7 # SECOND VM echo "Creating second VM in the network and adding the security group to it" -nova boot --image cirros-0.3.4 --flavor 1 --nic net-id=$net_id test-vm2 +nova boot --image cirros-0.3.4 --flavor nfv --nic net-id=$net_id test-vm2 nova add-secgroup test-vm2 test-secgroup # FLOATING IP -- cgit 1.2.3-korg