Glance ubuntu binary container

Change-Id: Ifad08d368a6e3309a89f7f77c06110aac82a475a
Partially-Implements: blueprint binary-ubuntu
This commit is contained in:
Artur Zarzycki 2015-12-28 15:04:09 +01:00
parent c5c5c6e444
commit 7cc7ecdade

View File

@ -14,6 +14,18 @@ RUN yum -y install \
&& yum clean all \
&& mkdir -p /etc/ceph/
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
glance \
python-oslo-i18n \
python-castellan \
python-cryptography \
python-rbd \
python-rados \
&& apt-get clean \
&& mkdir -p /etc/ceph/
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}