Install Ironic and IronicClient in to nova's venv

This patch installs Ironic and the IronicClient in to the nova venv so that
Nova can use the Ironic Nova driver which is currently in the Ironic
source tree and not Nova's.

Change-Id: I07f8a8a416529bccc5130a4edbc1b34b31458380
This commit is contained in:
Chris Krelle 2014-03-14 17:06:00 -07:00
parent 34f867f4c7
commit 6102488042
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/bin/bash
set -eu
# Install Ironic and IronicClient in nova venv.
# TODO(NobodyCam): remove once Ironic Nova driver lands in Nova.
set +u
source $NOVA_VENV_DIR/bin/activate
set -u
pip install /opt/stack/ironic
pip install /opt/stack/python-ironicclient
set +u
deactivate
set -u