ade5bfa302
By default, Ansible injects a variable for every fact, prefixed with ansible_. This can result in a large number of variables for each host, which at scale can incur a performance penalty. Ansible provides a configuration option [0] that can be set to False to prevent this injection of facts. In this case, facts should be referenced via ansible_facts.<fact>. This change updates all references to Ansible facts within Kolla Ansible from using individual fact variables to using the items in the ansible_facts dictionary. This allows users to disable fact variable injection in their Ansible configuration, which may provide some performance improvement. This change disables fact variable injection in the ansible configuration used in CI, to catch any attempts to use the injected variables. [0] https://docs.ansible.com/ansible/latest/reference_appendices/config.html#inject-facts-as-vars Change-Id: I7e9d5c9b8b9164d4aee3abb4e37c8f28d98ff5d1 Partially-Implements: blueprint performance-improvements
14 lines
690 B
YAML
14 lines
690 B
YAML
---
|
|
- name: Checking the api_interface is present
|
|
fail: "msg='Please check the api_interface property - interface {{ api_interface }} not found'"
|
|
when: api_interface not in ansible_facts.interfaces
|
|
|
|
- name: Checking the api_interface is active
|
|
fail: "msg='Please check the api_interface settings - interface {{ api_interface }} is not active'"
|
|
when: not hostvars[inventory_hostname].ansible_facts[api_interface]['active']
|
|
|
|
# kolla_address handles relevant address check
|
|
- name: Checking the api_interface ip address configuration
|
|
fail: "msg='Please check the api_interface settings - interface {{ api_interface }} ip address problem'"
|
|
when: api_interface_address is not defined
|