From 46baa0ee3bc089f9e63340ff2452ffa3cf989989 Mon Sep 17 00:00:00 2001 From: "Brad P. Crochet" Date: Wed, 25 Apr 2018 12:07:17 -0400 Subject: [PATCH] Add healthcheck script to mistral-event-engine image The mistral event engine image does not have the healthcheck script. Let's add that. Change-Id: I2a1f1d7cc17c7d077fbba0dd327e071391550505 --- container-images/tripleo_kolla_template_overrides.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/container-images/tripleo_kolla_template_overrides.j2 b/container-images/tripleo_kolla_template_overrides.j2 index 17a73f891..4659e1396 100644 --- a/container-images/tripleo_kolla_template_overrides.j2 +++ b/container-images/tripleo_kolla_template_overrides.j2 @@ -352,6 +352,12 @@ RUN mkdir -p /openstack && \ chmod a+rx /openstack/healthcheck {% endblock %} +{% block mistral_event_engine_footer %} +RUN mkdir -p /openstack && \ + ln -s /usr/share/openstack-tripleo-common/healthcheck/mistral-event-engine /openstack/healthcheck && \ + chmod a+rx /openstack/healthcheck +{% endblock %} + {% block multipathd_footer %} RUN mkdir -p /openstack && \ ln -s /usr/share/openstack-tripleo-common/healthcheck/multipathd /openstack/healthcheck && \