From efb056193088aa9c35813409022f08a6b11fe506 Mon Sep 17 00:00:00 2001 From: caoyuan Date: Wed, 28 Dec 2016 23:00:37 +0800 Subject: [PATCH] Move ironic precheck into its own role Change-Id: Iba8a87757ac9ead27c90c9d426977077d442a04e Partially-implements: blueprint condition-pre-check --- ansible/roles/haproxy/tasks/precheck.yml | 11 ++++++++++ ansible/roles/ironic/tasks/precheck.yml | 15 ++++++++++++++ ansible/roles/prechecks/tasks/port_checks.yml | 20 ------------------- 3 files changed, 26 insertions(+), 20 deletions(-) diff --git a/ansible/roles/haproxy/tasks/precheck.yml b/ansible/roles/haproxy/tasks/precheck.yml index b9dbf33582..a5a85a7b60 100644 --- a/ansible/roles/haproxy/tasks/precheck.yml +++ b/ansible/roles/haproxy/tasks/precheck.yml @@ -91,6 +91,17 @@ - "{{ 'horizon' not in haproxy_stat }}" - inventory_hostname in groups['haproxy'] +- name: Checking free port for Ironic HAProxy + wait_for: + host: "{{ kolla_internal_vip_address }}" + port: "{{ ironic_api_port }}" + connect_timeout: 1 + state: stopped + when: + - enable_ironic | bool + - "{{ 'ironic_api' not in haproxy_stat }}" + - inventory_hostname in groups['haproxy'] + - name: Checking free port for Manila API HAProxy wait_for: host: "{{ kolla_internal_vip_address }}" diff --git a/ansible/roles/ironic/tasks/precheck.yml b/ansible/roles/ironic/tasks/precheck.yml index ed97d539c0..230833a7a7 100644 --- a/ansible/roles/ironic/tasks/precheck.yml +++ b/ansible/roles/ironic/tasks/precheck.yml @@ -1 +1,16 @@ --- +- name: Get container facts + kolla_container_facts: + name: + - ironic_api + register: container_facts + +- name: Checking free port for Ironic + wait_for: + host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}" + port: "{{ ironic_api_port }}" + connect_timeout: 1 + state: stopped + when: + - container_facts['ironic_api'] is not defined + - inventory_hostname in groups['ironic-api'] diff --git a/ansible/roles/prechecks/tasks/port_checks.yml b/ansible/roles/prechecks/tasks/port_checks.yml index 65d6146874..f99dda4b32 100644 --- a/ansible/roles/prechecks/tasks/port_checks.yml +++ b/ansible/roles/prechecks/tasks/port_checks.yml @@ -173,26 +173,6 @@ - enable_haproxy | bool - inventory_hostname in groups['haproxy'] -- name: Checking free port for Ironic - wait_for: - host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}" - port: "{{ ironic_api_port }}" - connect_timeout: 1 - state: stopped - when: - - enable_ironic | bool - - inventory_hostname in groups['ironic-api'] - -- name: Checking free port for Ironic HAProxy - wait_for: - host: "{{ kolla_internal_vip_address }}" - port: "{{ ironic_api_port }}" - connect_timeout: 1 - state: stopped - when: - - enable_ironic | bool - - inventory_hostname in groups['haproxy'] - - name: Checking free port for Influxdb Admin wait_for: host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"