69fef5cd59
Debian support is not maintained in Kolla so it got a bit behind Ubuntu one. This changeset enables Debian for all images. Jessie (even with backports) may be too old for some images though. Also unify distro check to ['debian', 'ubuntu'] to keep alphabetical order like it is done for RPM distributions. Partially-Implements: blueprint multiarch-and-arm64-containers Change-Id: I056233fbfa277e0e2360c07c3f80d9558c554357
24 lines
576 B
Django/Jinja
24 lines
576 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block manila_scheduler_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['debian', 'ubuntu'] %}
|
|
|
|
{% set manila_scheduler_packages = [
|
|
'manila-scheduler'
|
|
] %}
|
|
|
|
{{ macros.install_packages(manila_scheduler_packages | customizable("packages")) }}
|
|
|
|
{% endif%}
|
|
{% endif%}
|
|
|
|
{% block manila_scheduler_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER manila
|