2e67b2790b
Currently we are not creating any non-root user for running libvirt daemon. That should be done in the future, but currently when we don't have such a user, libvirtd should be runned by root. Change-Id: Ieb0d8bd068b591f522548628b0bfffbe206b749e Related-Bug: #1523630
38 lines
1002 B
Django/Jinja
38 lines
1002 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
libvirt-daemon \
|
|
libguestfs \
|
|
qemu-system-x86 \
|
|
libvirt-daemon-driver-nwfilter \
|
|
libvirt-daemon-config-nwfilter \
|
|
libvirt-daemon-driver-lxc \
|
|
ceph-common \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
ceph-common \
|
|
libvirt-bin \
|
|
dmidecode \
|
|
pm-utils \
|
|
qemu \
|
|
qemu-block-extra \
|
|
ebtables \
|
|
&& apt-get clean \
|
|
&& mkdir -p /etc/ceph \
|
|
&& rm /etc/libvirt/qemu/networks/default.xml /etc/libvirt/qemu/networks/autostart/default.xml
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{{ include_footer }}
|
|
|
|
# TODO(coolsvap/nihilifer): Run libvirt daemon as non-root user.
|