Use py3 for venvs for all OS

Depends-On: https://review.opendev.org/700162
Depends-On: https://review.opendev.org/700160
Depends-On: https://review.opendev.org/700225
Change-Id: Iab09ec3b79cd2a82c8887aa70a49b82a89ea184c
This commit is contained in:
Dmitriy Rabotyagov 2019-12-20 13:40:47 +02:00 committed by Dmitriy Rabotyagov (noonedeadpunk)
parent 2224cf162a
commit d7a05389c3
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ openstack_config_dir: "{{ lookup('env', 'OSA_CONFIG_DIR') | default('/etc/openst
openstack_clone_root: "{{ (lookup('env', 'OSA_CLONE_ROOT') | default('/opt/openstack-ansible', true)) }}"
## OpenStack service python version
openstack_venv_python_executable: "{{ (ansible_distribution == 'CentOS') | ternary('python2', 'python3') }}"
openstack_venv_python_executable: "python3"
#uwsgi venv deploys the same python version as OpenStack service venv
uwsgi_python_executable: "{{ openstack_venv_python_executable }}"