8fd18abf9c
There is not prechecks for Ironic kernel and initramfs files, this patch add it. Change-Id: I7e576eeff02310170d51a4585cbda6c465a29e0d Closes-bug: #1667544
28 lines
798 B
YAML
28 lines
798 B
YAML
---
|
|
- 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']
|
|
|
|
- name: Checking ironic-agent files exist for Ironic
|
|
local_action: stat path="{{ node_custom_config }}/ironic/{{ item }}"
|
|
register: result
|
|
failed_when: not result.stat.exists
|
|
when:
|
|
- inventory_hostname in groups['ironic-pxe']
|
|
- orchestration_engine != 'KUBERNETES'
|
|
with_items:
|
|
- "ironic-agent.kernel"
|
|
- "ironic-agent.initramfs"
|