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
15 lines
578 B
Django/Jinja
15 lines
578 B
Django/Jinja
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-openstack-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'source' %}
|
|
|
|
ADD ceilometer-base-archive /ceilometer-base-source
|
|
RUN ln -s ceilometer-base-source/* ceilometer \
|
|
&& useradd --user-group ceilometer \
|
|
&& pip --no-cache-dir install /ceilometer \
|
|
&& mkdir -p /etc/ceilometer /var/log/ceilometer /home/ceilometer \
|
|
&& cp -r /ceilometer/etc/* /etc/ceilometer/ \
|
|
&& chown -R ceilometer: /etc/ceilometer /var/log/ceilometer /home/ceilometer
|
|
|
|
{% endif %}
|