From 032aef580d84c304ca882d210184c982aed8a9c8 Mon Sep 17 00:00:00 2001 From: Rajesh Tailor Date: Thu, 16 Nov 2017 18:24:35 +0530 Subject: [PATCH] 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 --- container-images/tripleo_kolla_template_overrides.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/container-images/tripleo_kolla_template_overrides.j2 b/container-images/tripleo_kolla_template_overrides.j2 index 0cd875c67..9e11fcc39 100644 --- a/container-images/tripleo_kolla_template_overrides.j2 +++ b/container-images/tripleo_kolla_template_overrides.j2 @@ -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'] %}