Merge "Use Python 3 for mod_wsgi in cyborg and monasca on Debian/Ubuntu"

This commit is contained in:
Zuul 2020-05-08 19:07:46 +00:00 committed by Gerrit Code Review
commit f7670cdc6d
3 changed files with 8 additions and 2 deletions

View File

@ -20,7 +20,7 @@ RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
{% elif base_package_type == 'deb' %}
{% set cyborg_api_packages = [
'apache2',
'libapache2-mod-wsgi'
'libapache2-mod-wsgi-py3'
] %}
{% endif %}

View File

@ -30,7 +30,7 @@ RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
{% set monasca_base_packages = [
'apache2',
'libapache2-mod-wsgi',
'libapache2-mod-wsgi-py3',
'librdkafka-dev'
] %}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with Cyborg and Monasca APIs in Debian and Ubuntu source
type images.
`LP#1873421 <https://bugs.launchpad.net/kolla-ansible/+bug/1873421>`__