From 6e2668dbffa93e5f1b401555533e7c2692cab05b Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Fri, 18 May 2018 16:59:23 -0700 Subject: [PATCH] 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 --- devstack/plugin.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index ffdfab7695..8295b04bc9 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -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")