# The purpose of this file is to provide the configuration options to the venv # build script for each venv. These options are all set out in a file in order # to enable the idempotence of the venv build process. # The working directory for the venv build ROLE_VENV_PATH="/tmp/openstack-venv-builder/venvs/sahara" # The name used for the venv working directory, and resulting compressed venv ROLE_VENV_FILE="sahara-r14.12.0-x86_64" # The index options used by pip when building the venvs PIP_INDEX_OPTIONS="" PIP_INDEX_OPTIONS="${PIP_INDEX_OPTIONS} --no-index" # The options used by pip when building the venvs PIP_INSTALL_OPTIONS="--timeout 120 --find-links /var/www/repo/os-releases/r14.12.0/ubuntu-14.04-x86_64" # The command used when creating the venv VENV_CREATE_COMMAND="/usr/local/bin/virtualenv --always-copy --extra-search-dir /var/www/repo/os-releases/r14.12.0/ubuntu-14.04-x86_64 --never-download" # The requirements list for the venv ROLE_VENV_REQUIREMENTS="httplib2 keystonemiddleware pycrypto pymysql python-keystoneclient python-keystoneclient python-memcached python-saharaclient sahara virtualenv virtualenv-tools warlock"