Merge "Add httpd to the Barbican API image"
This commit is contained in:
commit
f3690aee32
@ -8,18 +8,32 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
|
|||||||
{% if install_type == 'binary' %}
|
{% if install_type == 'binary' %}
|
||||||
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
||||||
{% set barbican_api_packages = [
|
{% set barbican_api_packages = [
|
||||||
|
'httpd',
|
||||||
|
'mod_ssl',
|
||||||
|
'mod_wsgi',
|
||||||
'openstack-barbican-api',
|
'openstack-barbican-api',
|
||||||
'uwsgi-plugin-python'
|
'uwsgi-plugin-python'
|
||||||
] %}
|
] %}
|
||||||
{% elif base_distro in ['debian', 'ubuntu'] %}
|
|
||||||
{% set barbican_api_packages = [
|
|
||||||
'barbican-api',
|
|
||||||
'uwsgi-plugin-python'
|
|
||||||
] %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{{ macros.install_packages(barbican_api_packages | customizable("packages")) }}
|
{{ macros.install_packages(barbican_api_packages | customizable("packages")) }}
|
||||||
|
|
||||||
|
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
|
||||||
|
&& sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf
|
||||||
|
|
||||||
|
{% elif base_distro in ['debian', 'ubuntu'] %}
|
||||||
|
{% set barbican_api_packages = [
|
||||||
|
'apache2',
|
||||||
|
'barbican-api',
|
||||||
|
'libapache2-mod-wsgi',
|
||||||
|
'uwsgi-plugin-python'
|
||||||
|
] %}
|
||||||
|
|
||||||
|
{{ macros.install_packages(barbican_api_packages | customizable("packages")) }}
|
||||||
|
|
||||||
|
RUN echo > /etc/apache2/ports.conf
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
COPY extend_start.sh /usr/local/bin/kolla_barbican_extend_start
|
COPY extend_start.sh /usr/local/bin/kolla_barbican_extend_start
|
||||||
|
@ -6,3 +6,16 @@ if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|||||||
barbican-db-manage upgrade
|
barbican-db-manage upgrade
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Assume the service runs on top of Apache when user is root
|
||||||
|
if [[ "$(whoami)" == 'root' ]]; then
|
||||||
|
# NOTE(pbourke): httpd will not clean up after itself in some cases which
|
||||||
|
# results in the container not being able to restart. (bug #1489676, 1557036)
|
||||||
|
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
|
||||||
|
# Loading Apache2 ENV variables
|
||||||
|
. /etc/apache2/envvars
|
||||||
|
rm -rf /var/run/apache2/*
|
||||||
|
else
|
||||||
|
rm -rf /var/run/httpd/* /run/httpd/* /tmp/httpd*
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
other:
|
||||||
|
- |
|
||||||
|
HTTPd was added to the barbican-api image.
|
Loading…
Reference in New Issue
Block a user