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
(cherry picked from commit c27024a2c8)
This commit is contained in:
Nir Magnezi 2018-05-28 12:01:24 +03:00
parent 7045f929ab
commit 49956b8260
1 changed files with 1 additions and 1 deletions

View File

@ -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 }}