33c988a6ce
Since change I1bc19f8198da3f9ab2ae2a8864c3349b21b0249e we install the centos-release-ceph-reef package as a dependency, but some code was still expecting the quincy package. Change-Id: I8ebcf815d80f3bead25e0078d69b34e17ad013bd
36 lines
896 B
Django/Jinja
36 lines
896 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block manila_share_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.enable_extra_repos(['ceph', 'epel']) }}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set manila_share_packages = [
|
|
'ceph-common',
|
|
'glusterfs-fuse',
|
|
'sqlite',
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set manila_share_packages = [
|
|
'ceph-common',
|
|
'glusterfs-client',
|
|
'python3-cephfs',
|
|
'python3-rados',
|
|
'python3-rbd',
|
|
'sqlite3'
|
|
] %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(manila_share_packages | customizable("packages")) }}
|
|
|
|
{% block manila_share_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER manila
|