b54420442e
Add `nova` user to nova-libvirt container. And change libvirt-socket group to nova. Change-Id: I183c83f4be8b1d7c75d4ac204df7b7e059626aa2 Closes-Bug: #1525583
36 lines
970 B
Django/Jinja
36 lines
970 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 \
|
|
&& useradd --user-group nova
|
|
|
|
{{ include_footer }} |