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
69 lines
2.3 KiB
Django/Jinja
69 lines
2.3 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block sahara_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='sahara') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set sahara_base_packages = [
|
|
'openstack-sahara-common',
|
|
'python3-sahara-plugin-ambari',
|
|
'python3-sahara-plugin-cdh',
|
|
'python3-sahara-plugin-mapr',
|
|
'python3-sahara-plugin-spark',
|
|
'python3-sahara-plugin-storm',
|
|
'python3-sahara-plugin-vanilla'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set sahara_base_packages = ['sahara-common'] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(sahara_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set sahara_base_packages = ['openssh'] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set sahara_base_packages = ['openssh-client'] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(sahara_base_packages | customizable("packages")) }}
|
|
|
|
ADD sahara-base-archive /sahara-base-source
|
|
ADD plugins-archive /
|
|
|
|
{% set sahara_base_pip_packages = [
|
|
'/sahara'
|
|
] %}
|
|
{% set sahara_base_plugins_pip_packages = [
|
|
'/plugins/*',
|
|
] %}
|
|
|
|
RUN ln -s sahara-base-source/* sahara \
|
|
&& {{ macros.install_pip(sahara_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& if [ "$(ls /plugins)" ]; then \
|
|
{{ macros.install_pip(sahara_base_plugins_pip_packages) }}; \
|
|
fi \
|
|
&& mkdir -p /etc/sahara \
|
|
&& cp -r /sahara/etc/sahara/* /etc/sahara/ \
|
|
&& chown -R sahara: /etc/sahara \
|
|
&& 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/sahara/rootwrap.conf
|
|
|
|
{% endif %}
|
|
|
|
COPY sahara_sudoers /etc/sudoers.d/kolla_sahara_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN chmod 750 /etc/sudoers.d \
|
|
&& chmod 640 /etc/sudoers.d/kolla_sahara_sudoers \
|
|
&& touch /usr/local/bin/kolla_sahara_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_sahara_extend_start
|
|
|
|
{% block sahara_base_footer %}{% endblock %}
|