7b1e550c3f
Blazar is a resource reservation service for OpenStack, allows to reserve compute host for tenants. Really usefull for HPC, NFV and Scientific environments. Implements: blueprint blazar-images Change-Id: If42087a791a7f84105c867509e4bbc7b423cb41e
17 lines
434 B
Django/Jinja
17 lines
434 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}blazar-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block blazar_manager_header %}{% endblock %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
|
|
{% block blazar_manager_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER blazar
|