Merge "Increase services project quotas when deploying Octavia"
This commit is contained in:
commit
0b682f0750
@ -35,6 +35,7 @@
|
|||||||
ca_private_key_path: "{{ ca_private_key_path }}"
|
ca_private_key_path: "{{ ca_private_key_path }}"
|
||||||
ca_passphrase: "{{ ca_passphrase }}"
|
ca_passphrase: "{{ ca_passphrase }}"
|
||||||
client_cert_path: "{{ client_cert_path }}"
|
client_cert_path: "{{ client_cert_path }}"
|
||||||
|
auth_project_name: "{{ auth_project_name }}"
|
||||||
environment:
|
environment:
|
||||||
OS_USERNAME: "{{ os_username }}"
|
OS_USERNAME: "{{ os_username }}"
|
||||||
OS_USER_DOMAIN_NAME: "Default"
|
OS_USER_DOMAIN_NAME: "Default"
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
# Previously was a stack in the overcloud
|
# Previously was a stack in the overcloud
|
||||||
- include_tasks: network.yml
|
- include_tasks: network.yml
|
||||||
|
- include_tasks: quotas.yml
|
||||||
- include_tasks: certs_gen.yml
|
- include_tasks: certs_gen.yml
|
||||||
when: generate_certs
|
when: generate_certs
|
||||||
|
@ -0,0 +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 }}
|
@ -142,6 +142,7 @@ workflows:
|
|||||||
client_cert_path: <% $.client_cert_path %>
|
client_cert_path: <% $.client_cert_path %>
|
||||||
generate_certs: <% $.generate_certs %>
|
generate_certs: <% $.generate_certs %>
|
||||||
mgmt_port_dev: <% $.mgmt_port_dev %>
|
mgmt_port_dev: <% $.mgmt_port_dev %>
|
||||||
|
auth_project_name: <% $.auth_project_name %>
|
||||||
on-complete: purge_local_temp_dir
|
on-complete: purge_local_temp_dir
|
||||||
purge_local_temp_dir:
|
purge_local_temp_dir:
|
||||||
action: tripleo.files.remove_temp_dir path=<% $.undercloud_local_dir %>
|
action: tripleo.files.remove_temp_dir path=<% $.undercloud_local_dir %>
|
||||||
|
Loading…
Reference in New Issue
Block a user