1ae703e4a4
novajoin is a nova vendordata service that enables the enrollment of nova instances into freeIPA. Change-Id: Ia1c0f896ef45b8bb00d0354e7343c7eb4e060fd1
17 lines
554 B
Django/Jinja
17 lines
554 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}novajoin-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block novajoin_server_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro not in ['centos', 'oraclelinux', 'rhel'] %}
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% block novajoin_server_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|