50dc394f49
There are senlin binary packages on redhat[1] and ubuntu systems[2]. [1]https://trunk.rdoproject.org/centos7-master/puppet-passed-ci/openstack-senlin-api-5.0.1-0.20180324005415.00641ad.el7.centos.noarch.rpm [2]http://ubuntu-cloud.archive.canonical.com/ubuntu/pool/main/s/senlin/senlin-api_5.0.0-0ubuntu1~cloud0_all.deb Closes-Bug: #1759094 Change-Id: Ic9ffe563924511edf80f0eeb2df3018a1111bb35
27 lines
831 B
Django/Jinja
27 lines
831 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}senlin-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block senlin_api_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set senlin_api_packages = ['openstack-senlin-api'] %}
|
|
|
|
{% elif base_distro in ['debian', 'ubuntu'] %}
|
|
{% set senlin_api_packages = ['senlin-api'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(senlin_api_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_senlin_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_senlin_extend_start
|
|
|
|
{% block senlin_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER senlin
|