gnocchi: do not install cradox

Project description says:

/!DON’T USE IT, but use upstream python-rados, except you really can’t /!

Also installing it created errors which are silently ignored.

Change-Id: Id24458cd655aeace0e745c512aa7890b3edda51c
This commit is contained in:
Marcin Juszkiewicz 2021-11-01 14:28:19 +01:00 committed by Marcin Juszkiewicz
parent eff681063a
commit 1b41f2e682

View File

@ -23,7 +23,6 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'python3-boto3',
'python3-rados',
] %}
{{ macros.install_packages(gnocchi_base_packages | customizable("packages")) }}
{% elif base_package_type == 'deb' %}
{% set gnocchi_base_packages = [
@ -36,14 +35,9 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'python3-setuptools',
'python3-wheel'
] %}
{% set gnocchi_base_pip_packages = [
'cradox'
] %}
{% endif %}
{{ macros.install_packages(gnocchi_base_packages | customizable("packages")) }}
RUN {{ macros.install_pip(gnocchi_base_pip_packages | customizable("pip_packages"), constraints=false) }}
{% endif %}
{% elif install_type == 'source' %}
{% if base_package_type == 'rpm' %}