Merge "DIB: default to installing pip and virtualenv from packages"

This commit is contained in:
Zuul 2019-10-16 11:12:06 +00:00 committed by Gerrit Code Review
commit 42ec4f9aea
2 changed files with 7 additions and 2 deletions

View File

@ -13,8 +13,8 @@ VENVDIR=/opt/ironic-python-agent
# Generate upper-constraints
$IPADIR/imagebuild/common/generate_upper_constraints.sh $IPADIR/upper-constraints.txt
# create the virtual environment
virtualenv $VENVDIR
# create the virtual environment using the default python
$DIB_PYTHON -m virtualenv -- $VENVDIR
# pip might be an older version which does not support the -c option, therefore upgrade first
$VENVDIR/bin/pip install pip --upgrade

View File

@ -48,6 +48,11 @@ def main():
help="Additional DIB element to use")
# TODO(dtantsur): handle distribution == tinyipa
os.environ['ELEMENTS_PATH'] = find_elements_path()
if not os.environ.get('DIB_INSTALLTYPE_pip_and_virtualenv'):
# DIB updates these to latest versions from source. However, we do the
# same in our virtualenv, so it's not needed and just increases the
# size of the image.
os.environ['DIB_INSTALLTYPE_pip_and_virtualenv'] = 'package'
args = parser.parse_args()
try:
subprocess.check_call(['disk-image-create', '-o', args.output,