82b5dc643d
Change-Id: Ic3cbf89b135a1902fa57a8d1df8c858cd6398097
89 lines
2.9 KiB
YAML
89 lines
2.9 KiB
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- nova_api
|
|
- nova_novncproxy
|
|
- nova_serialproxy
|
|
- nova_spicehtml5proxy
|
|
- placement_api
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Nova API
|
|
vars:
|
|
nova_api: "{{ nova_services['nova-api'] }}"
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ nova_api_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['nova_api'] is not defined
|
|
- inventory_hostname in groups[nova_api.group]
|
|
- nova_api.enabled | bool
|
|
|
|
- name: Checking free port for Nova Metadata
|
|
vars:
|
|
nova_api: "{{ nova_services['nova-api'] }}"
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ nova_metadata_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['nova_api'] is not defined
|
|
- inventory_hostname in groups[nova_api.group]
|
|
- nova_api.enabled | bool
|
|
|
|
- name: Checking free port for Nova NoVNC Proxy
|
|
vars:
|
|
nova_novncproxy: "{{ nova_services['nova-novncproxy'] }}"
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ nova_novncproxy_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['nova_novncproxy'] is not defined
|
|
- nova_novncproxy.enabled | bool
|
|
- inventory_hostname in groups[nova_novncproxy.group]
|
|
|
|
- name: Checking free port for Nova Serial Proxy
|
|
vars:
|
|
nova_serialproxy: "{{ nova_services['nova-serialproxy'] }}"
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ nova_serialproxy_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['nova_serialproxy'] is not defined
|
|
- nova_serialproxy.enabled | bool
|
|
- inventory_hostname in groups[nova_serialproxy.group]
|
|
|
|
- name: Checking free port for Nova Spice HTML5 Proxy
|
|
vars:
|
|
nova_spicehtml5proxy: "{{ nova_services['nova-spicehtml5proxy'] }}"
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ nova_spicehtml5proxy_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['nova_spicehtml5proxy'] is not defined
|
|
- nova_spicehtml5proxy.enabled | bool
|
|
- inventory_hostname in groups[nova_spicehtml5proxy.group]
|
|
|
|
- name: Checking free port for Nova Placement API
|
|
vars:
|
|
placement_api: "{{ nova_services['placement-api'] }}"
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ placement_api_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['placement_api'] is not defined
|
|
- inventory_hostname in groups[placement_api.group]
|
|
- placement_api.enabled | bool
|