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

This commit is contained in:
Zuul 2021-03-26 11:45:46 +00:00 committed by Gerrit Code Review
commit 40d5050239
1 changed files with 5 additions and 0 deletions

View File

@ -574,6 +574,11 @@ def run_ansible_playbook(playbook, inventory, workdir, playbook_dir=None,
env['ANSIBLE_TRANSPORT'] = connection env['ANSIBLE_TRANSPORT'] = connection
env['ANSIBLE_CACHE_PLUGIN_TIMEOUT'] = 7200 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': if connection == 'local':
env['ANSIBLE_PYTHON_INTERPRETER'] = sys.executable env['ANSIBLE_PYTHON_INTERPRETER'] = sys.executable