diff --git a/docker/ironic/ironic-api/Dockerfile.j2 b/docker/ironic/ironic-api/Dockerfile.j2 index 6b726a4198..6a7b6975f5 100644 --- a/docker/ironic/ironic-api/Dockerfile.j2 +++ b/docker/ironic/ironic-api/Dockerfile.j2 @@ -4,10 +4,7 @@ MAINTAINER Kolla Project (https://launchpad.net/kolla) {% if install_type == 'binary' %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} -# Install delorean version even though version number is less -# http://lists.openstack.org/pipermail/openstack-dev/2015-August/073100.html -RUN VER_TO_GET=$(yum --showduplicates list openstack-ironic-api | awk '/delorean/ {print $2}') \ - && yum -y install openstack-ironic-api-$VER_TO_GET \ +RUN yum -y install openstack-ironic-api \ && yum clean all {% endif %} diff --git a/docker/ironic/ironic-conductor/Dockerfile.j2 b/docker/ironic/ironic-conductor/Dockerfile.j2 index 1a09763122..a28ea2ebc9 100644 --- a/docker/ironic/ironic-conductor/Dockerfile.j2 +++ b/docker/ironic/ironic-conductor/Dockerfile.j2 @@ -4,10 +4,7 @@ MAINTAINER Kolla Project (https://launchpad.net/kolla) {% if install_type == 'binary' %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} -# Install delorean version even though version number is less -# http://lists.openstack.org/pipermail/openstack-dev/2015-August/073100.html -RUN VER_TO_GET=$(yum --showduplicates list openstack-ironic-conductor | awk '/delorean/ {print $2}') \ - && yum -y install openstack-ironic-conductor-$VER_TO_GET \ +RUN yum -y install openstack-ironic-conductor \ && yum clean all {% endif %}