Increase devstack neutron secgroups quota to 100

When running tempest with a high concurrency the service account
will run out of security group quota. This patch increases the
service account security group quota to 100 when using the octavia
devstack plugin.

Change-Id: I1483745963b858463c45db7e85438920f90ca447
This commit is contained in:
Michael Johnson 2018-05-18 16:59:23 -07:00
parent 3dfb6c6efe
commit 6e2668dbff
1 changed files with 4 additions and 0 deletions

View File

@ -169,6 +169,10 @@ function _stop_octavia_apache_wsgi {
function create_octavia_accounts {
create_service_user $OCTAVIA
# Increase the service account secgroups quota
# This is imporant for concurrent tempest testing
openstack quota set --secgroups 100 $SERVICE_PROJECT_NAME
local octavia_service=$(get_or_create_service "octavia" \
$OCTAVIA_SERVICE_TYPE "Octavia Load Balancing Service")