From c27024a2c8cd00311ddd580f394f7c85872326a8 Mon Sep 17 00:00:00 2001 From: Nir Magnezi Date: Mon, 28 May 2018 12:01:24 +0300 Subject: [PATCH] Increase services project secgroup-rules quotas when deploying Octavia This patch is a followup to I6b87b147d301dea3251fe4509b04cd4b9b27ddba, which lacked the secgroup-rules quota. The reasoning is the same: Octavia currently launches load balancer VMs in the services tenant which has very low quotas by default. This patch increases the values through the API for the services project to permit lots of load balancers. Closes Bug: #1769896 Change-Id: I8ad5175f7ca79939725a0c2342378a052b5c6bd2 --- playbooks/roles/octavia-overcloud-config/tasks/quotas.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/octavia-overcloud-config/tasks/quotas.yml b/playbooks/roles/octavia-overcloud-config/tasks/quotas.yml index caa513022..43f52c89a 100644 --- a/playbooks/roles/octavia-overcloud-config/tasks/quotas.yml +++ b/playbooks/roles/octavia-overcloud-config/tasks/quotas.yml @@ -1,4 +1,4 @@ --- - name: increase quotas for project used for amphora shell: | - openstack quota set --cores -1 --ram -1 --ports -1 --instances -1 --secgroups -1 {{ auth_project_name }} + openstack quota set --cores -1 --ram -1 --ports -1 --instances -1 --secgroups -1 --secgroup-rules -1 {{ auth_project_name }}