From c8d1f024d5e4b74d1fc1b7f1067d7faace7efeb2 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Fri, 13 Jul 2018 10:48:46 +0100 Subject: [PATCH] Add openstack client to Ansible venv In order for the octavia role to upload the amphora image using tags, we need to have access to the openstack CLI. This will be necessary until the Ansible os_image module can replace this shell task. Change-Id: Ic75483dbab8a5dd43672b3234dbd19bad3d6e735 --- requirements.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/requirements.txt b/requirements.txt index c62b760cfe..60ad46f969 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,6 +15,12 @@ virtualenv>=14.0.6 # MIT # longer use our own keystone module. python-keystoneclient>=3.8.0 # Apache-2.0 +# We use this for the octavia role to be able +# to upload a tagged image. +# Remove this once Ansible can do this with +# modules instead. +python-openstackclient>=3.14.2 + # We use this for the Ansible openstack # modules. shade>=1.17.0 # Apache-2.0