Increase the devstack secuirty group rules quota

Recent changes to the Octavia tempest tests has caused our test
runs to exceed the default neutron security group rule quota.
This patch increases that quota for the Octavia project in devstack.

Change-Id: I49e92f81b23e0b306c62c406a45029b96dce20df
This commit is contained in:
Michael Johnson 2020-08-16 13:31:58 -07:00
parent e2e873fc9d
commit 2e2464d778
1 changed files with 3 additions and 2 deletions

View File

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