d519f43417
The quota option can be used to set quota values for the different openstack resources E.g.: --quota routers=50 --quota secgroups=-1 Change-Id: Iacbe083fe768715dba717a8e0661f7c3ddfe054a
8 lines
214 B
YAML
8 lines
214 B
YAML
---
|
|
|
|
- name: apply quotas to the openstack admin project
|
|
shell: |
|
|
source {{ stackrc_file }}
|
|
openstack quota set --{{ item.key }} {{ item.value }} $OS_PROJECT_NAME
|
|
with_dict: "{{ quota | default({}) }}"
|