Merge "Allow venv python interpreter to be overridden"

This commit is contained in:
Zuul 2019-09-10 05:18:45 +00:00 committed by Gerrit Code Review
commit 5681e2d2b5
2 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ cinder_service_setup_host_python_interpreter: "{{ openstack_service_setup_host_p
# Set installation method.
cinder_install_method: "source"
cinder_venv_python_executable: "{{ openstack_venv_python_executable | default('python2') }}"
cinder_git_repo: https://git.openstack.org/openstack/cinder
cinder_git_install_branch: master

View File

@ -17,6 +17,7 @@
import_role:
name: "python_venv_build"
vars:
venv_python_executable: "{{ cinder_venv_python_executable }}"
venv_build_constraints: "{{ cinder_git_constraints }}"
venv_build_distro_package_list: "{{ cinder_devel_distro_packages }}"
venv_install_destination_path: "{{ cinder_bin | dirname }}"