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
20 lines
544 B
Django/Jinja
20 lines
544 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}blazar-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block blazar_api_header %}{% endblock %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_blazar_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_blazar_extend_start
|
|
|
|
{% block blazar_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER blazar
|