Use flavor name instead of flavor id 99/14699/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Thu, 26 May 2016 09:05:15 +0000 (11:05 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Thu, 26 May 2016 09:11:24 +0000 (11:11 +0200)
Default flavor id changes if its attributes have been modified.
Flavor name is used instead of flavor id.

Change-Id: I7a076eed4ebef13a83594bf9017895bd6fb36bd2
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
docs/userguide/troubleshooting.rst
testcases/OpenStack/healthcheck/healthcheck.sh

index 406aaad..99b9297 100644 (file)
@@ -89,7 +89,7 @@ is not **ACTIVE**), you can check why it failed by doing::
 
 It might show some messages about the booting failure. To try that manually::
 
-    nova boot --flavor 2 --image functest-vping --nic net-id=<NET_ID> nova-test
+    nova boot --flavor m1.small --image functest-vping --nic net-id=<NET_ID> nova-test
 
 This will spawn a VM using the network created previously manually.
 In all the OPNFV tested scenarios from CI, it never has been a problem with the
index 899f96b..d9a83a2 100755 (executable)
@@ -187,13 +187,13 @@ info "Testing Nova API..."
 # by SDN controller in case of odl_l2 scenario.
 sleep 60
 
-nova boot --flavor 2 --image ${image_1} --nic net-id=${net1_id} ${instance_1}
+nova boot --flavor m1.small --image ${image_1} --nic net-id=${net1_id} ${instance_1}
 debug "nova instance '${instance_1}' booted on ${net_1}."
-nova boot --flavor 2 --image ${image_1} --nic net-id=${net1_id} ${instance_2}
+nova boot --flavor m1.small --image ${image_1} --nic net-id=${net1_id} ${instance_2}
 debug "nova instance '${instance_2}' booted on ${net_1}."
-nova boot --flavor 2 --image ${image_2} --nic net-id=${net2_id} ${instance_3}
+nova boot --flavor m1.small --image ${image_2} --nic net-id=${net2_id} ${instance_3}
 debug "nova instance '${instance_3}' booted on ${net_2}."
-nova boot --flavor 2 --image ${image_2} --nic net-id=${net2_id} ${instance_4}
+nova boot --flavor m1.small --image ${image_2} --nic net-id=${net2_id} ${instance_4}
 debug "nova instance '${instance_4}' booted on ${net_2}."
 
 vm1_id=$(nova list | grep ${instance_1} | awk '{print $2}')