Merge "Revert "Revert "Add environment variables for better var handling""" into stable/ussuri

This commit is contained in:
Zuul 2021-03-27 06:37:17 +00:00 committed by Gerrit Code Review
commit ca3f7b7a02
1 changed files with 5 additions and 0 deletions

View File

@ -578,6 +578,11 @@ def run_ansible_playbook(playbook, inventory, workdir, playbook_dir=None,
env['ANSIBLE_TRANSPORT'] = connection
env['ANSIBLE_CACHE_PLUGIN_TIMEOUT'] = 7200
# Set var handling for better performance
env['ANSIBLE_INJECT_FACT_VARS'] = False
env['ANSIBLE_VARS_PLUGIN_STAGE'] = 'inventory'
env['ANSIBLE_GATHER_SUBSET'] = '!all,min'
if connection == 'local':
env['ANSIBLE_PYTHON_INTERPRETER'] = sys.executable