From 7c32e351bb3cc10dc9d7e83238e5241e5cde7c04 Mon Sep 17 00:00:00 2001 From: Vladimir Kozhukalov Date: Thu, 16 May 2024 15:28:16 -0500 Subject: [PATCH] Install more openstack client plugins The openstackclient metapackage https://opendev.org/openstack/openstackclient is not compatible with the current Openstack constraints. So let's explicitly install necessary plugins. For now let's install those plugins that Openstack Heat lists in its requirements.txt. Change-Id: I391bf8edf7918b4f1ffe92a78d184031af67ed09 --- openstack_client/Dockerfile.ubuntu | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/openstack_client/Dockerfile.ubuntu b/openstack_client/Dockerfile.ubuntu index 82cc8bff..bc4ae952 100644 --- a/openstack_client/Dockerfile.ubuntu +++ b/openstack_client/Dockerfile.ubuntu @@ -11,4 +11,28 @@ RUN apt-get update && apt-get install -y \ RUN pip3 install --upgrade pip && \ pip3 install \ -c${UPPER_CONSTRAINTS_FILE} \ - cmd2 python-openstackclient python-heatclient --ignore-installed + cmd2 \ + python-barbicanclient \ + python-blazarclient \ + python-cinderclient \ + python-designateclient \ + python-glanceclient \ + python-heatclient \ + python-ironicclient \ + python-keystoneclient \ + python-magnumclient \ + python-manilaclient \ + python-mistralclient \ + python-monascaclient \ + python-neutronclient \ + python-novaclient \ + python-octaviaclient \ + python-openstackclient \ + python-saharaclient \ + python-swiftclient \ + python-troveclient \ + python-vitrageclient \ + python-zaqarclient \ + python-zunclient \ + --ignore-installed +