a9113fc466
In order to speed up deployment time some "local" actions should be run only once using 'run_once: True'. This will decrease deployment time in case of multihost configuration. Change-Id: I6015d772d35c15e96c52f577013b6e41197cb41a
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- octavia_api
|
|
- octavia_health_manager
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Octavia API
|
|
wait_for:
|
|
host: "{{ api_interface_address }}"
|
|
port: "{{ octavia_api_port }}"
|
|
connect_timeout: 1
|
|
timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['octavia_api'] is not defined
|
|
- inventory_hostname in groups['octavia-api']
|
|
|
|
- name: Checking free port for Octavia Health Manager
|
|
wait_for:
|
|
host: "{{ api_interface_address }}"
|
|
port: "{{ octavia_health_manager_port }}"
|
|
connect_timeout: 1
|
|
timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['octavia_health_manager'] is not defined
|
|
- inventory_hostname in groups['octavia-health-manager']
|
|
|
|
- name: Checking certificate files exist for octavia
|
|
local_action: stat path="{{ node_custom_config }}/octavia/{{ item }}"
|
|
run_once: True
|
|
register: result
|
|
failed_when: not result.stat.exists
|
|
when: inventory_hostname in groups['octavia-worker']
|
|
with_items:
|
|
- cakey.pem
|
|
- ca_01.pem
|
|
- client.pem
|