ae1322ec10
This change updates the docker files to use base_package_type instead of doing specific distro checks for the rhel/deb generic cases. The base_distro is still available and is used when a specific distro needs a customization but if the differences are purely rpm vs deb, then the base_package_type can be used. Change-Id: I8d720bb185df65a0178061ccf20b1ab2265da2c5
25 lines
768 B
Django/Jinja
25 lines
768 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block xtrabackup_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
RUN yum-config-manager --enable percona\*
|
|
{% endif %}
|
|
|
|
{% if base_package_type in ['rpm', 'deb'] %}
|
|
{% set xtrabackup_packages = ['percona-xtrabackup-24', 'qpress'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(xtrabackup_packages | customizable("packages")) }}
|
|
|
|
COPY backup.sh /usr/local/bin/kolla_mariadb_backup.sh
|
|
RUN chmod 755 /usr/local/bin/kolla_mariadb_backup.sh
|
|
|
|
CMD /usr/local/bin/kolla_mariadb_backup.sh
|
|
|
|
{% block xtrabackup_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|