Make transient vCPU bump permanent

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2016-04-11 16:12:48 +00:00
parent 1a3df38b19
commit 6ffb26653b

View file

@ -1210,3 +1210,10 @@
register: TENANT_ID
- shell: source /root/keystonerc_admin && nova quota-update --instances 45 --cores 150 --ram 288300 --security-groups 20 {{ TENANT_ID.stdout }}
# Transient quota
- shell: source /root/keystonerc_admin && keystone tenant-list | grep 'transient ' | awk '{print $2}'
always_run: true
changed_when: false
register: TENANT_ID
- shell: source /root/keystonerc_admin && nova quota-update --instances 20 --cores 30 --ram 51200 --security-groups 20 {{ TENANT_ID.stdout }}