From 10f94694248f083eb927553e8079845cc6e4fd2d Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Mon, 29 Jun 2015 17:19:29 -0600 Subject: [PATCH] Satisfy some dependencies for Agent plugins This change enables use of the mysql and libvrit plugins to the Monasca agent by adding dependencies to the virtualenv Change-Id: If4e8170b5b6aed232d5a2074107aab9dc0c91d89 --- devstack.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/devstack.yml b/devstack.yml index 77cbccf..0d4f4ec 100644 --- a/devstack.yml +++ b/devstack.yml @@ -17,6 +17,13 @@ ignore_errors: true - name: Install virtualenv apt: name=python-virtualenv + - name: Install Agent plugin dependencies in virtualenv + pip: name={{item}} state=latest virtualenv="{{monasca_virtualenv_dir}}" + with_items: + - lxml + - libvirt-python + - mysql-python + - python-novaclient tasks: - name: Setup the monasca cli credentials in the default environment copy: src=tests/env.sh dest=/etc/profile.d/monasca_cli.sh owner=root group=root mode=0644