Skip to content
Snippets Groups Projects
Commit 91313d82 authored by caoyuan's avatar caoyuan
Browse files

Move cinder precheck into its own role

And remove the unnecessary blanks.

Change-Id: Id2b5f8119c446b36c91ec0e63246c90a60459e24
Partially-implements: blueprint condition-pre-check
parent 9d3a60ec
No related branches found
No related tags found
No related merge requests found
--- ---
- name: Get container facts
kolla_container_facts:
name:
- cinder_api
register: container_facts
- name: Checking free port for Cinder API
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ cinder_api_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['cinder_api'] is not defined
- inventory_hostname in groups['cinder-api']
...@@ -25,6 +25,17 @@ ...@@ -25,6 +25,17 @@
- "{{ 'barbican_api' not in haproxy_stat }}" - "{{ 'barbican_api' not in haproxy_stat }}"
- inventory_hostname in groups['haproxy'] - inventory_hostname in groups['haproxy']
- name: Checking free port for Cinder API HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ cinder_api_port }}"
connect_timeout: 1
state: stopped
when:
- enable_cinder | bool
- "{{ 'cinder_api' not in haproxy_stat }}"
- inventory_hostname in groups['haproxy']
- name: Checking free port for Cloudkitty API HAProxy - name: Checking free port for Cloudkitty API HAProxy
wait_for: wait_for:
host: "{{ kolla_internal_vip_address }}" host: "{{ kolla_internal_vip_address }}"
......
...@@ -93,26 +93,6 @@ ...@@ -93,26 +93,6 @@
- enable_congress | bool - enable_congress | bool
- inventory_hostname in groups['haproxy'] - inventory_hostname in groups['haproxy']
- name: Checking free port for Cinder API
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ cinder_api_port }}"
connect_timeout: 1
state: stopped
when:
- enable_cinder | bool
- inventory_hostname in groups['cinder-api']
- name: Checking free port for Cinder API HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ cinder_api_port }}"
connect_timeout: 1
state: stopped
when:
- enable_cinder | bool
- inventory_hostname in groups['haproxy']
- name: Checking free port for Etcd Peer - name: Checking free port for Etcd Peer
wait_for: wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}" host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment