
Config plays do not need to check containers. This avoids skipping tasks during the genconfig action. Ironic and Glance rolling upgrades are handled specially. Swift and Bifrost do not use the handlers at all. Partially-Implements: blueprint performance-improvements Change-Id: I140bf71d62e8f0932c96270d1f08940a5ba4542a
35 lines
1007 B
YAML
35 lines
1007 B
YAML
---
|
|
- import_tasks: register.yml
|
|
when: enable_keystone | bool
|
|
|
|
- import_tasks: config-host.yml
|
|
|
|
- import_tasks: config.yml
|
|
|
|
- import_tasks: check-containers.yml
|
|
|
|
- include_tasks: clone.yml
|
|
when: ironic_dev_mode | bool
|
|
|
|
- import_tasks: bootstrap.yml
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
|
|
# NOTE(mgoddard): If inspector was previously configured to use the iptables
|
|
# PXE filter, it may leave rules in place that block inspection. Clean them up.
|
|
# The iptables Ansible module is not idempotent - it fails if the chain does
|
|
# not exist, so use a command instead.
|
|
- name: Flush and delete ironic-inspector iptables chain
|
|
become: true
|
|
command: iptables --{{ item }} ironic-inspector
|
|
register: ironic_inspector_chain
|
|
with_items:
|
|
- flush
|
|
- delete-chain
|
|
when: ironic_inspector_pxe_filter != 'iptables'
|
|
changed_when: ironic_inspector_chain.rc == 0
|
|
failed_when:
|
|
- ironic_inspector_chain.rc != 0
|
|
- "'No chain/target/match by that name' not in ironic_inspector_chain.stderr"
|