From b73d6ce0bcf9b622b0c154e4ca16ba2b75fe9644 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Fri, 24 Jan 2025 23:59:00 +0100 Subject: [PATCH] 2024.2: use py-pure-client instead of purestorage Install Pure Storage PyPI module. A requirement for the Pure Storage driver is the installation of the Pure Storage Python SDK version 1.47.0 or later from PyPI. Signed-off-by: Christian Berendt --- templates/2024.2/template-overrides.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/2024.2/template-overrides.mako b/templates/2024.2/template-overrides.mako index 6eef708a..db11ac83 100644 --- a/templates/2024.2/template-overrides.mako +++ b/templates/2024.2/template-overrides.mako @@ -55,7 +55,7 @@ RUN apt-get update ${"\\"} {% set cinder_volume_packages_append = ['multipath-tools'] %} -{% set cinder_volume_pip_packages = [ 'purestorage', 'infinisdk', 'python-linstor' ] %} +{% set cinder_volume_pip_packages = [ 'py-pure-client', 'infinisdk', 'python-linstor' ] %} {% block cinder_volume_footer %} RUN {{ macros.install_pip(cinder_volume_pip_packages | customizable("pip_packages")) }} {% endblock %}