Skip to content
Snippets Groups Projects
Commit 489bcd3c authored by Eduardo Gonzalez's avatar Eduardo Gonzalez
Browse files

Implement customizations for heat-api-cfn container


Add customizations for heat-api-cfn containers

Partially-implements: blueprint third-party-plugin-support
Change-Id: Ibee860cd902cbd4167e4ae20b498c4652c2ad430
Signed-off-by: default avatarEduardo Gonzalez <dabarren@gmail.com>
parent b44abe07
No related branches found
No related tags found
No related merge requests found
FROM {{ namespace }}/{{ image_prefix }}heat-base:{{ tag }} FROM {{ namespace }}/{{ image_prefix }}heat-base:{{ tag }}
MAINTAINER {{ maintainer }} MAINTAINER {{ maintainer }}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %} {% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set heat_api_cfn_packages = ['openstack-heat-api-cfn'] %}
RUN yum -y install \
openstack-heat-api-cfn \
&& yum clean all
{% elif base_distro in ['ubuntu'] %} {% elif base_distro in ['ubuntu'] %}
{% set heat_api_cfn_packages = ['heat-api-cfn'] %}
RUN apt-get -y install --no-install-recommends \
heat-api-cfn \
&& apt-get clean
{% endif %} {% endif %}
RUN {{ macros.install_packages(heat_api_cfn_packages | customizable("packages")) }}
{% endif %} {% endif %}
{% block heat_api_cfn_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }} {{ include_footer }}
USER heat USER heat
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment