Skip to content
Snippets Groups Projects
Commit 739d6579 authored by Swapnil Kulkarni (coolsvap)'s avatar Swapnil Kulkarni (coolsvap)
Browse files

Add support for mistral ubuntu binary containers

partially implements blueprint add-mistral-binary

Change-Id: I5aeb4eba3233947421baf0d35319e1090370a61a
Depends-On: If4be00b937e14ec93443dcb7249cf17099d57cbe
parent 40cd7550
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,12 @@ RUN yum -y install \
openstack-mistral-api \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
mistral-api \
&& apt-get clean
{% endif %}
{% endif %}
......
......@@ -11,8 +11,9 @@ RUN yum -y install \
{% elif base_distro in ['ubuntu'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
RUN apt-get -y install --no-install-recommends \
mistral-common \
&& apt-get clean
{% endif %}
......
......@@ -8,6 +8,12 @@ RUN yum -y install \
openstack-mistral-engine \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
mistral-engine \
&& apt-get clean
{% endif %}
{% endif %}
......
......@@ -8,6 +8,12 @@ RUN yum -y install \
openstack-mistral-executor \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
mistral-executor \
&& apt-get clean
{% endif %}
{% endif %}
......
......@@ -86,8 +86,7 @@ class BuildTestCentosSource(BuildTest, base.BaseTestCase):
class BuildTestUbuntuBinary(BuildTest, base.BaseTestCase):
excluded_images = ["mistral-base",
"zaqar"]
excluded_images = ["zaqar"]
def setUp(self):
super(BuildTestUbuntuBinary, self).setUp()
......
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