diskimage-builder/elements/pypi
Clint Byrum d03b14b4eb Update pypi element to suggest pypi-mirror
jeepyb no longer contains pypi-mirror.

Change-Id: Ifa905181119b30b1184dde53deaf0a97e2cb2ab2
2014-02-19 12:10:38 +00:00
..
extra-data.d Make the MIRROR_TARGET directory if it didn't exist 2014-02-06 14:10:42 +00:00
post-install.d Allow using a pypi mirror to install via pip. 2013-08-10 22:07:30 +12:00
pre-install.d Allow using a pypi mirror to install via pip. 2013-08-10 22:07:30 +12:00
README.md Update pypi element to suggest pypi-mirror 2014-02-19 12:10:38 +00:00

Inject a PyPI mirror

Bind mounts a PyPI mirror from ~/.cache/image-create/pypi/mirror into the build environment and temporarily overwrites /root/.pip.conf and .pydistutils.cfg to use it.

When online, the master pypi index is supplied as an extra-url, so uncached dependencies will still be available. When offline, only the mirror is used - a stale mirror will cause build failures.

pypi-mirror can be useful in making a partial PyPI mirror suitable for building images. For instance:

  • sudo apt-get install libxml2-dev libxslt-dev libmysqlclient-dev libpq-dev
    libnspr4-dev pkg-config libsqlite3-dev libzmq-dev libffi-dev libldap2-dev
    libsasl2-dev

  • pip install git+https://git.openstack.org/openstack-infra/pypi-mirror

  • cat << EOF > mirror.yaml cache-root: /home/USER/.cache/image-create/pypi/download

    mirrors:

  • mkdir -p /home/USER/.cache/image-create/pypi/{download,mirror}

  • run-mirror -b remotes/origin/master --verbose -c mirror.yaml

    This creates and updates the mirror.

If you have additional packages that are not identified in the global openstack requirements project, you can include them:

  • pip install -d ~/.cache/image-create/pypi/download/pip/openstack
    heat-cfntools distribute os-apply-config run-mirror -b remotes/origin/master --verbose -c mirror.yaml --no-download