From 65cd46e8e6f80aa373680892f6b7e6ec4f55f788 Mon Sep 17 00:00:00 2001 From: Jeffrey Zhang Date: Tue, 14 Nov 2017 17:17:19 +0800 Subject: [PATCH] Install python-openstackclient in kolla-toolbox container in the past, shade depends on python-ironicclient and python-ironicclient depends on python-openstackclient. But in the recent released python-ironiclient 2.0, python-openstackclient is removed[0]. So python-openstackclient is missing. This will affect all branches. Here is a potential issue. we need use upper-constraints.txt file in kolla-toolbox. install the latest python packages is not a good idea. Implement this may take much time. Let us fix the gate ASAP and improve this later. [0] https://review.openstack.org/#/c/297730/ Partial-Bug: #1732180 Change-Id: I55810b641e388e26129b7fa77f97a8736eb1bb48 --- docker/kolla-toolbox/Dockerfile.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/kolla-toolbox/Dockerfile.j2 b/docker/kolla-toolbox/Dockerfile.j2 index c206433876..4af7a54c0a 100644 --- a/docker/kolla-toolbox/Dockerfile.j2 +++ b/docker/kolla-toolbox/Dockerfile.j2 @@ -89,6 +89,7 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ 'os-client-config==1.28.0', 'pbr==2.0.0', 'pymongo', + 'python-openstackclient==3.12.0', 'pytz', 'pyudev', 'shade==1.16.0'