Ubuntu binary is not supported and may never be. Installing from cloud-archive packaging is only for the current stable distros, Ubuntu does not have a Delorean type repo. We place a fail message in the base image to catch this and remove the messages throughout the project. An additional fail message is placed to catch all other things. Change-Id: Id2953f503ebd42226f6a08e75979ae56511c40f7 Implements: blueprint install-from-ubuntu
35 lines
1007 B
Django/Jinja
35 lines
1007 B
Django/Jinja
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-openstack-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
openstack-glance \
|
|
python-oslo-i18n \
|
|
python-castellan \
|
|
python-cryptography \
|
|
&& yum clean all
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
{% if base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
python-rbd \
|
|
python-rados \
|
|
&& apt-get clean \
|
|
&& mkdir -p /etc/ceph/
|
|
|
|
{% endif %}
|
|
|
|
ADD glance-base-archive /glance-base-source
|
|
RUN ln -s glance-base-source/* glance \
|
|
&& useradd --user-group glance \
|
|
&& pip --no-cache-dir install /glance \
|
|
&& mkdir -p /etc/glance /var/log/glance /home/glance \
|
|
&& cp -r /glance/etc/* /etc/glance/ \
|
|
&& chown -R glance: /etc/glance /var/log/glance /home/glance
|
|
|
|
{% endif %}
|