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
(cherry picked from commit 032aef580d)
This commit is contained in:
Rajesh Tailor 2017-11-16 18:24:35 +05:30
parent 37f3f455d4
commit f5198df23f
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,9 @@ gpgcheck=0' >> /etc/yum.repos.d/opendaylight.repo
# 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'] %}