Add httpd packages to ec2api image

These are needed for the TLS termination that will go in front
of ec2-api in case where internal TLS is enabled. This
termination, however, will be spawned in a separate container.

bp tls-via-certmonger-containers

Change-Id: I214fe20e12487395e1c6e247e92b2f53ba158ff9
This commit is contained in:
Rajesh Tailor 2017-11-16 18:24:35 +05:30
parent 29e187d019
commit 032aef580d
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
# NOTE (jaosorior): glance-api with TLS everywhere needs these packages.
{% set glance_api_packages_append = ['httpd', 'mod_ssl'] %}
# NOTE (ratailor): ec2-api with TLS needs these packages.
{% set ec2_api_packages_append = ['httpd', 'mod_ssl'] %}
# NOTE (jaosorior): neutron-server with TLS everywhere needs these packages.
{% set neutron_server_packages_append = ['httpd', 'mod_ssl'] %}