Pinned paramiko to 2.7.2 since it failed to authenticate via ssh
The Tempest tests failed to connect to VMs by Floating IPs since
the authentication to VMs failed. Maybe this is related to
https://github.com/paramiko/paramiko/issues/1984
PROD: PROD-36791
Change-Id: Ib29bf300c2b8381a303208dc40d8e78924671806
(cherry picked from commit 36b393589b99067e87a6a97fd62a41d77bbd5d3d)
diff --git a/Dockerfile b/Dockerfile
index 6ea3b46..a7d317f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -20,7 +20,7 @@
pushd heat-tempest-plugin; git checkout 0.2.0; pip install -r requirements.txt; \
popd;
-RUN pip install --force-reinstall python-cinderclient==3.2.0 python-glanceclient==2.11
+RUN pip install --force-reinstall python-cinderclient==3.2.0 python-glanceclient==2.11 paramiko==2.7.2
RUN sed -i 's/uuid4())/uuid4()).replace("-","")/g' /usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/scenarios/keystone/utils.py
RUN sed -i 's/uuid4())/uuid4()).replace("-","")/g' /usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/context/keystone/users.py