9eb38405b7
The swift-object-expirer is provided by the 'openstack-swift-proxy' package and thus it is unavailable on swift-object image. This change adds a new Docker image to fulfill this requirement and stop using swift-object image in this case. This image is needed while RDO does not fix the packaging. The issue is being tracked in: https://bugzilla.redhat.com/show_bug.cgi?id=1382921 Change-Id: Idc7ee92d756d8923da2198ede33abf5ed1142041 Closes-Bug: 1630425
26 lines
874 B
Django/Jinja
26 lines
874 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block swift_object_expirer_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
# RDO has it packaged in the wrong package for now. The issue is being
|
|
# tracked in https://bugzilla.redhat.com/show_bug.cgi?id=1382921
|
|
{% set swift_object_expirer_packages = ['openstack-swift-proxy'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set swift_object_expirer_packages = ['swift-object'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(swift_object_expirer_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
{% block swift_object_expirer_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER swift
|