CI: Increase master-flavor size

One limitation that we might be facing when try to run large
containers like hyperkube is is the size of the master node
flavor. Increase the master flavor memory to 1024 mb.

Change-Id: Ie095d8de290343dc995fbcd88445509cc36579bc
This commit is contained in:
Mathieu Velten 2017-01-11 16:38:26 +01:00
parent c349d2288a
commit 287f794013
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ function add_flavor {
# Create magnum specific flavor for use in functional tests.
echo_summary "Create a flavor"
openstack flavor create m1.magnum --id 100 --ram 1024 --disk 10 --vcpus 1
openstack flavor create s1.magnum --id 200 --ram 512 --disk 10 --vcpus 1
openstack flavor create s1.magnum --id 200 --ram 1024 --disk 10 --vcpus 1
}
if ! function_exists echo_summary; then