53443c5c71
With the move to RHEL/CentOS 8 we no longer have Python 2 in our images so there is no need for checking which Python version (2.x or 3.x) is used inside of containers. We also no longer have to support yum as a value for distro_package_manager. Partially-Implements: blueprint centos-rhel-8 Change-Id: Ie45cf3465fedddbde7856961527421883ba3d5c9
56 lines
1.9 KiB
Django/Jinja
56 lines
1.9 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block barbican_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='barbican', groups='nfast') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set barbican_base_packages = ['openstack-barbican-common'] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set barbican_base_packages = ['barbican-common'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(barbican_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set barbican_base_packages = ['uwsgi-plugin-python3'] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set barbican_base_packages = ['uwsgi-plugin-python3'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(barbican_base_packages | customizable("packages")) }}
|
|
|
|
{% set barbican_base_pip_packages = [
|
|
'/barbican',
|
|
'mysqlclient',
|
|
'pastedeploy',
|
|
'python-barbicanclient',
|
|
'uwsgi'
|
|
] %}
|
|
|
|
ADD barbican-base-archive /barbican-base-source
|
|
RUN ln -s barbican-base-source/* barbican \
|
|
&& {{ macros.install_pip(barbican_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/barbican \
|
|
&& cp -r /barbican/etc/barbican/* /etc/barbican/ \
|
|
&& chown -R barbican: /etc/barbican
|
|
|
|
{% endif %}
|
|
|
|
COPY barbican_sudoers /etc/sudoers.d/kolla_barbican_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 640 /etc/sudoers.d/kolla_barbican_sudoers \
|
|
&& touch /usr/local/bin/kolla_barbican_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_barbican_extend_start
|
|
|
|
{% block barbican_base_footer %}{% endblock %}
|