From 6cf72ccbb13e8b0df4e6ccc5588e5db569dbeda8 Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Sun, 16 Aug 2020 13:31:58 -0700 Subject: [PATCH] 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 (cherry picked from commit 2e2464d778cc86df161fdf59406aac30770b58f0) --- devstack/plugin.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index cea7865370..863aa6bd7f 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -172,9 +172,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 local octavia_service=$(get_or_create_service "octavia" \ $OCTAVIA_SERVICE_TYPE "Octavia Load Balancing Service")