004d9eb5d5
Backport to all supported branches. Change-Id: I4a13bbe959e3324f05d5cf78a3be2415eb2ba7ec
59 lines
1.7 KiB
Django/Jinja
59 lines
1.7 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block mistral_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='mistral') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set mistral_base_packages = [
|
|
'openstack-mistral-common',
|
|
'openstack-tacker',
|
|
'redis',
|
|
] %}
|
|
# Note(egonzalez): Ubuntu does not have tacker packages yet.
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set mistral_base_packages = [
|
|
'mistral-common',
|
|
'redis-server'
|
|
] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(mistral_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD mistral-base-archive /mistral-base-source
|
|
ADD plugins-archive /
|
|
|
|
{% set mistral_base_pip_packages = [
|
|
'/mistral',
|
|
'redis'
|
|
] %}
|
|
|
|
{% set mistral_base_plugins_pip_packages = [
|
|
'/plugins/*'
|
|
] %}
|
|
|
|
RUN ln -s mistral-base-source/* mistral \
|
|
&& {{ macros.install_pip(mistral_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/mistral \
|
|
&& cp -r /mistral/etc/* /etc/mistral/ \
|
|
&& chown -R mistral: /etc/mistral \
|
|
&& if [ "$(ls /plugins)" ]; then \
|
|
{{ macros.install_pip(mistral_base_plugins_pip_packages) }}; \
|
|
fi
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN touch /usr/local/bin/kolla_mistral_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_mistral_extend_start
|
|
|
|
{% block mistral_base_footer %}{% endblock %}
|