Merge "Allow venv python interpreter to be overridden"

This commit is contained in:
Zuul 2019-10-01 13:49:13 +00:00 committed by Gerrit Code Review
commit 05147868f4
2 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@ octavia_service_setup_host_python_interpreter: "{{ openstack_service_setup_host_
# Set installation method.
octavia_install_method: "source"
octavia_venv_python_executable: "{{ openstack_venv_python_executable | default('python2') }}"
## Octavia standalone (v2)
octavia_v2: True

View File

@ -27,6 +27,7 @@
import_role:
name: "python_venv_build"
vars:
venv_python_executable: "{{ octavia_venv_python_executable }}"
venv_build_constraints: "{{ octavia_git_constraints }}"
venv_build_distro_package_list: "{{ octavia_devel_distro_packages }}"
venv_install_destination_path: "{{ octavia_bin | dirname }}"