From 436749b660866b2a2db985f5491ff137d000bad6 Mon Sep 17 00:00:00 2001 From: inc0 Date: Fri, 26 Jun 2015 10:27:21 +0200 Subject: [PATCH] Add oslo_service package to heat Delorean repo has latests version of heat, which requires oslo_service, but there is no oslo_service rpm package upstream yet. This has to be pip installed until packaging problem is solved in repo. Change-Id: Id147dde9dc7cbe5b734fbf4671d48a0404a1548b Closes-Bug: #1469001 --- docker/centos/binary/heat/heat-base/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 docker/centos/binary/heat/heat-base/Dockerfile diff --git a/docker/centos/binary/heat/heat-base/Dockerfile b/docker/centos/binary/heat/heat-base/Dockerfile old mode 100644 new mode 100755 index 5108861649..4dc854d712 --- a/docker/centos/binary/heat/heat-base/Dockerfile +++ b/docker/centos/binary/heat/heat-base/Dockerfile @@ -1,8 +1,9 @@ FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%% MAINTAINER Kolla Project (https://launchpad.net/kolla) +# TODO(inc0): when oslo_service lands in delorean, change pip to yum # necessary until https://bugzilla.redhat.com/show_bug.cgi?id=1229477 is fixed -RUN yum -y install python-oslo-policy && yum clean all +RUN yum -y install python-oslo-policy && yum clean all && pip install oslo.service RUN mkdir -p /opt/kolla COPY config-heat.sh /opt/kolla/config-heat.sh