![Alex Schultz](/assets/img/avatar_default.png)
RHEL currently doesn't support magnum, so let's throw an error if it is built on rhel. Change-Id: Idfb94fd66e5eb841fb81ec4eeeaf13b7c5a3cede
43 lines
1.4 KiB
Django/Jinja
43 lines
1.4 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block magnum_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='magnum') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_package_type == 'rpm' and base_distro != 'rhel' %}
|
|
{% set magnum_base_packages = ['openstack-magnum-common'] %}
|
|
{% elif base_package_type == 'rpm' and base_distro == 'rhel' %}
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/bash
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set magnum_base_packages = ['magnum-common'] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(magnum_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD magnum-base-archive /magnum-base-source
|
|
|
|
{% set magnum_base_pip_packages = [
|
|
'/magnum[osprofiler]'
|
|
] %}
|
|
|
|
RUN ln -s magnum-base-source/* magnum \
|
|
&& {{ macros.install_pip(magnum_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/magnum \
|
|
&& cp -r /magnum/etc/magnum/* /etc/magnum \
|
|
&& chown -R magnum: /etc/magnum
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN touch /usr/local/bin/kolla_magnum_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_magnum_extend_start
|
|
|
|
{% block magnum_base_footer %}{% endblock %}
|