Merge "Avoid unconditional fact gathering"
This commit is contained in:
commit
0d1de84cb2
@ -47,6 +47,7 @@
|
||||
gather_subset: min
|
||||
delegate_to: localhost
|
||||
delegate_facts: true
|
||||
when: not hostvars.localhost.module_setup | default(false)
|
||||
|
||||
- name: Reserve TCP ports for ironic serial consoles
|
||||
include_role:
|
||||
|
@ -15,6 +15,7 @@
|
||||
delegate_to: localhost
|
||||
delegate_facts: true
|
||||
run_once: true
|
||||
when: not hostvars.localhost.module_setup | default(false)
|
||||
|
||||
- name: Ensure IP addresses are allocated
|
||||
hosts: seed-hypervisor:seed:overcloud
|
||||
|
@ -36,6 +36,7 @@
|
||||
|
||||
- name: Ensure the Kayobe Ansible user account exists
|
||||
hosts: kayobe_user_bootstrap_required_True
|
||||
gather_facts: false
|
||||
tags:
|
||||
- kayobe-ansible-user
|
||||
vars:
|
||||
|
@ -19,6 +19,8 @@
|
||||
- block:
|
||||
- name: Gather facts
|
||||
setup:
|
||||
when: not module_setup | default(false)
|
||||
register: gather_facts
|
||||
|
||||
- name: Ensure the Python virtualenv package is installed
|
||||
package:
|
||||
@ -82,6 +84,16 @@
|
||||
ansible_python_interpreter: /usr/libexec/platform-python
|
||||
when: virtualenv is defined
|
||||
|
||||
# If we gathered facts earlier it would have been with a different Python
|
||||
# interpreter. For gathering modes that may use a fact cache, gather facts
|
||||
# again using the interpreter from the virtual environment.
|
||||
- name: Gather facts
|
||||
setup:
|
||||
when:
|
||||
- virtualenv is defined
|
||||
- gather_facts is not skipped
|
||||
- lookup('config', 'DEFAULT_GATHERING') != 'implicit'
|
||||
|
||||
- block:
|
||||
- name: Ensure Python setuptools and pip packages are installed
|
||||
vars:
|
||||
|
@ -21,7 +21,7 @@
|
||||
- block:
|
||||
- name: Gather facts
|
||||
setup:
|
||||
when: ansible_python is not defined
|
||||
when: not module_setup | default(false)
|
||||
|
||||
- name: Ensure the Python virtualenv package is installed
|
||||
package:
|
||||
|
@ -67,7 +67,6 @@
|
||||
{{ bond_interfaces |
|
||||
map('net_bond_obj') |
|
||||
list }}
|
||||
become: True
|
||||
|
||||
# Configure virtual ethernet patch links to connect the workload provision
|
||||
# and external network bridges to the Neutron OVS bridge.
|
||||
|
@ -9,6 +9,7 @@
|
||||
# Facts required for ansible_user_uid and ansible_user_gid.
|
||||
- name: Gather facts for swift ring build host
|
||||
setup:
|
||||
when: not module_setup | default(false)
|
||||
|
||||
- name: Ensure Swift ring build directory exists
|
||||
file:
|
||||
|
@ -0,0 +1,7 @@
|
||||
---
|
||||
upgrade:
|
||||
- |
|
||||
Avoids unnecessary fact gathering using the ``setup`` module. This should
|
||||
improve the performance of environments using fact caching and the Ansible
|
||||
``smart`` fact gathering policy. See `story 2007492
|
||||
<https://storyboard.openstack.org/#!/story/2007492>`__ for details.
|
Loading…
x
Reference in New Issue
Block a user