3391a32802
See Iccb4e99f8e4b6659a19c1817d0f4c697824af25c for context. Change-Id: I9fbfa7ca442063db52c8b14586176ab994d2cf46 Partial-Bug: #150530
17 lines
497 B
Django/Jinja
17 lines
497 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}ironic-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN pip install -c requirements/upper-constraints.txt ironic-discoverd
|
|
# discoverd no longer in delorean 9/28/2015, switch to inspector on TODO
|
|
#RUN yum -y install \
|
|
# openstack-ironic-discoverd \
|
|
# && yum clean all
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{{ include_footer }}
|