From d14847189419d479373c3734cbfebd3fdc9c1e15 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Mon, 23 Apr 2018 16:14:22 +0100 Subject: [PATCH] defaults: Add virtualenv to default pip packages Right now, every os_* role explicitly requires and installs the 'virtualenv' package since they all deploy virtual environments for the services. As we move towards using distribution packages as an alternative, we can move this dependency to the pip_install role so we can have a central place to reference the common PIP dependencies across the hosts. Change-Id: I4eb0a70dc6aa4437a6aa52caf510225c49ef8b11 Implements: blueprint openstack-distribution-packages --- defaults/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 3d707fb..80ac712 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -44,10 +44,11 @@ pip_install_distro_build_packages: [] pip_install_build_packages: yes # This list var can be used to specify specific versions of pip, setuptools, -# wheel and any other packages which must be installed when pip installs. +# virtualenv, wheel and any other packages which must be installed when pip installs. pip_packages: - pip - setuptools + - virtualenv - wheel ## APT Cache options