53 lines
1.3 KiB
Django/Jinja
53 lines
1.3 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block manila_share_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
{% set manila_share_packages = [
|
|
'openstack-manila-share',
|
|
'ceph-common',
|
|
'sqlite'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set manila_share_packages = [
|
|
'manila-share',
|
|
'ceph-common',
|
|
'python3-rados',
|
|
'python3-rbd',
|
|
'sqlite3'
|
|
] %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(manila_share_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set manila_share_packages = [
|
|
'ceph-common',
|
|
'sqlite'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set manila_share_packages = [
|
|
'ceph-common',
|
|
'python3-rados',
|
|
'python3-rbd',
|
|
'sqlite3'
|
|
] %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(manila_share_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
{% block manila_share_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER manila
|