Add missing heat deps for deb-binary

heat-engine in V relies on vitrage and zun python client libraries, there is
a bug [1] in progress, but let's fix it faster in Kolla - and revert once
UCA fixes it on their side.

[1]: https://bugs.launchpad.net/cloud-archive/+bug/1893935

Change-Id: I974dfba1b3f939bb5d56e994c080da5673c7953b
This commit is contained in:
Michal Nasiadka 2020-09-24 07:35:59 +02:00 committed by Radosław Piliszek
parent f2daa5fa85
commit d39c3e4a85
1 changed files with 7 additions and 1 deletions

View File

@ -15,7 +15,13 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'python3-zaqarclient'
] %}
{% elif base_package_type == 'deb' %}
{% set heat_engine_packages = ['heat-engine'] %}
{# TODO(mnasiadka): Remove extra clients once bug 1893935 is solved in UCA #}
{# bug: https://bugs.launchpad.net/cloud-archive/+bug/1893935 #}
{% set heat_engine_packages = [
'heat-engine',
'python3-vitrageclient',
'python3-zunclient',
] %}
{% endif %}
{{ macros.install_packages(heat_engine_packages | customizable("packages")) }}