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

Merge "Manila ubuntu binary container"

parents 264e9088 d4a5c75d
No related branches found
No related tags found
No related merge requests found
FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }} FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }}
MAINTAINER {{ maintainer }} MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
manila-api \
&& apt-get clean
{% endif%}
{% endif%}
COPY extend_start.sh /usr/local/bin/kolla_manila_extend_start COPY extend_start.sh /usr/local/bin/kolla_manila_extend_start
RUN chmod 755 /usr/local/bin/kolla_manila_extend_start RUN chmod 755 /usr/local/bin/kolla_manila_extend_start
......
...@@ -12,6 +12,7 @@ RUN yum -y install \ ...@@ -12,6 +12,7 @@ RUN yum -y install \
{% elif base_distro in ['ubuntu'] %} {% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \ RUN apt-get install -y --no-install-recommends \
manila-common \
openvswitch-switch \ openvswitch-switch \
&& apt-get clean && apt-get clean
......
FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }} FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }}
MAINTAINER {{ maintainer }} MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
manila-scheduler \
&& apt-get clean
{% endif%}
{% endif%}
{{ include_footer }} {{ include_footer }}
USER manila USER manila
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