Merge "Add binary support for Manila container"

This commit is contained in:
Jenkins 2016-01-22 15:33:36 +00:00 committed by Gerrit Code Review
commit daec36e477
3 changed files with 14 additions and 4 deletions

View File

@ -2,10 +2,12 @@ FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
RUN yum -y install openstack-manila \
&& yum clean all
{% endif %}
{% elif install_type == 'source' %}
ADD manila-base-archive /manila-base-source

View File

@ -1,6 +1,15 @@
FROM {{ namespace }}/{{ image_prefix }}manila-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install openstack-manila-share \
&& yum clean all
{% endif %}
{% endif %}
{{ include_footer }}
USER manila

View File

@ -47,8 +47,7 @@ class BuildTest(base.BaseTestCase):
"murano-base",
"ironic-pxe",
"ironic-discoverd",
"mistral-base",
"manila-base"]
"mistral-base"]
failures = 0
for image, result in six.iteritems(bad_results):