Skip to content
Snippets Groups Projects
Commit 03b9ecc3 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Customizations for murano"

parents d44055fb 0ec7218b
No related branches found
No related tags found
No related merge requests found
FROM {{ namespace }}/{{ image_prefix }}murano-base:{{ tag }} FROM {{ namespace }}/{{ image_prefix }}murano-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 murano_api_packages = ['openstack-murano-api'] %}
RUN yum -y install \
openstack-murano-api \
&& yum clean all
{% elif base_distro in ['ubuntu'] %} {% elif base_distro in ['ubuntu'] %}
{% set murano_api_packages = ['murano-api'] %}
{% endif %}
RUN apt-get -y install --no-install-recommends \ RUN {{ macros.install_packages(murano_api_packages | customizable("packages")) }}
murano-api \
&& apt-get clean
{% endif %}
{% endif %} {% endif %}
COPY extend_start.sh /usr/local/bin/kolla_murano_extend_start COPY extend_start.sh /usr/local/bin/kolla_murano_extend_start
RUN chmod 755 /usr/local/bin/kolla_murano_extend_start RUN chmod 755 /usr/local/bin/kolla_murano_extend_start
{% block murano_api_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }} {{ include_footer }}
USER murano USER murano
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }} FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
MAINTAINER {{ maintainer }} MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %} {% import "macros.j2" as macros with context %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \ {% if install_type == 'binary' %}
openstack-murano-common \
&& yum clean all
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set murano_base_packages = ['openstack-murano-common'] %}
{% elif base_distro in ['ubuntu'] %} {% elif base_distro in ['ubuntu'] %}
{% set murano_base_packages = ['murano-common'] %}
{% endif %}
RUN apt-get -y install --no-install-recommends \ RUN {{ macros.install_packages(murano_base_packages | customizable("packages")) }}
murano-common \
&& apt-get clean
{% endif %}
{% elif install_type == 'source' %} {% elif install_type == 'source' %}
ADD murano-base-archive /murano-base-source ADD murano-base-archive /murano-base-source
...@@ -32,3 +30,6 @@ COPY extend_start.sh /usr/local/bin/kolla_extend_start ...@@ -32,3 +30,6 @@ COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN usermod -a -G kolla murano \ RUN usermod -a -G kolla murano \
&& touch /usr/local/bin/kolla_murano_extend_start \ && touch /usr/local/bin/kolla_murano_extend_start \
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_murano_extend_start && chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_murano_extend_start
{% block murano_base_footer %}{% endblock %}
{% block footer %}{% endblock %}
FROM {{ namespace }}/{{ image_prefix }}murano-base:{{ tag }} FROM {{ namespace }}/{{ image_prefix }}murano-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 murano_engine_packages = ['openstack-murano-engine'] %}
RUN yum -y install \
openstack-murano-engine \
&& yum clean all
{% elif base_distro in ['ubuntu'] %} {% elif base_distro in ['ubuntu'] %}
{% set murano_engine_packages = ['murano-engine'] %}
{% endif %}
RUN apt-get -y install --no-install-recommends \ RUN {{ macros.install_packages(murano_engine_packages | customizable("packages")) }}
murano-engine \
&& apt-get clean
{% endif %}
{% endif %} {% endif %}
{% block murano_engine_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }} {{ include_footer }}
USER murano USER murano
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