Merge "Allow venv python interpreter to be overridden"

This commit is contained in:
Zuul 2019-11-07 23:46:13 +00:00 committed by Gerrit Code Review
commit 3d7e2679fd
2 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,9 @@ zun_ceilometer_enabled: False
## Verbosity Options
debug: False
#python venv executable
zun_venv_python_executable: "{{ openstack_venv_python_executable | default('python2') }}"
# Set the host which will execute the shade modules
# for the service setup. The host must already have
# clouds.yaml properly configured.

View File

@ -36,6 +36,7 @@
import_role:
name: "python_venv_build"
vars:
venv_python_executable: "{{ zun_venv_python_executable }}"
venv_build_constraints: "{{ zun_git_constraints }}"
venv_install_destination_path: "{{ zun_bin | dirname }}"
venv_install_distro_package_list: "{{ zun_distro_packages }}"