Add shade_pip_executable variable

Expose shade_pip_executable to allow user to specific version of
pip.

Change-Id: I2d8c5316cd5c891bda5fa3c3dc2de813c8a5e49b
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-04-10 20:26:31 -04:00
parent 88550baa13
commit 32692b4aa4
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ shade_git_version: master
shade_install_method: git
shade_pip_name: shade
# shade_pip_executable:
# shade_pip_extra_args:
# shade_pip_version:
# shade_pip_virtualenv_python:

View File

@ -15,6 +15,7 @@
- name: Install shade using pip.
become: yes
pip:
executable: "{{ shade_pip_executable|default(omit) }}"
extra_args: "{{ shade_pip_extra_args|default(omit) }}"
name: "{{ shade_pip_name }}"
version: "{{ shade_pip_version|default(omit) }}"