b41247c656
Change needed to add header blocks to all Dockerfiles, similar to the base. Use case is to easily run something before packages are installed, e.g. to COPY a local rpm in that can be added to the package list. Change-Id: I1bbfdf0b762da0a392aa8bf47781315b45377bee Closes-Bug: 1618969
54 lines
2.0 KiB
Django/Jinja
54 lines
2.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block swift_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set swift_base_packages = ['openstack-swift'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set swift_base_packages = ['swift'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(swift_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set swift_base_packages = ['liberasurecode-devel'] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set swift_base_packages = ['liberasurecode-dev'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(swift_base_packages | customizable("packages")) }}
|
|
ADD swift-base-archive /swift-base-source
|
|
RUN ln -s swift-base-source/* swift \
|
|
&& useradd --user-group swift \
|
|
&& /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt /swift \
|
|
&& mkdir -p /etc/swift /var/cache/swift /var/log/swift /home/swift \
|
|
&& cp -r /swift/etc/* /etc/swift/ \
|
|
&& chown -R swift: /etc/swift /var/cache/swift /var/log/swift /home/swift
|
|
|
|
{% endif %}
|
|
|
|
RUN pip install oslo.rootwrap
|
|
|
|
COPY swift-rootwrap /var/lib/kolla/venv/bin/swift-rootwrap
|
|
COPY rootwrap.conf /etc/swift/rootwrap.conf
|
|
RUN chmod 755 /var/lib/kolla/venv/bin/swift-rootwrap \
|
|
&& chmod 644 /etc/swift/rootwrap.conf \
|
|
&& sed -i 's|^exec_dirs.*|exec_dirs=/var/lib/kolla/venv/bin,/sbin,/usr/sbin,/bin,/usr/bin,/usr/local/bin,/usr/local/sbin|g' /etc/swift/rootwrap.conf
|
|
|
|
COPY swift_sudoers /etc/sudoers.d/kolla_swift_sudoers
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/kolla_swift_sudoers
|
|
|
|
COPY build-swift-ring.py /usr/local/bin/kolla_build_swift_ring
|
|
RUN mkdir -p /opt/swift
|
|
|
|
RUN usermod -a -G kolla swift
|
|
|
|
{% block swift_base_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|