eec09486a3
Fix following two issues * neutron-linuxbridge-agent container lacks bridge-utils package * neutron-dhcp-agent container lacks dnsmasq-utils Co-Authored-By: Manjeet Singh Bhatia <manjeet.s.bhatia@intel.com> Closes-Bug: #1567406 Change-Id: I93a445b06612671f0331cd94573da41d2d3b60a0
73 lines
2.3 KiB
Django/Jinja
73 lines
2.3 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
openstack-neutron \
|
|
openstack-neutron-ml2 \
|
|
openvswitch \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
neutron-plugin-ml2 \
|
|
neutron-server \
|
|
openvswitch-switch \
|
|
&& apt-get clean \
|
|
&& mkdir -p /usr/share/neutron \
|
|
&& ln -s /etc/neutron/api-paste.ini /usr/share/neutron/api-paste.ini
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
conntrack-tools \
|
|
dnsmasq \
|
|
dnsmasq-utils \
|
|
ipset \
|
|
openvswitch \
|
|
uuid \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
arping \
|
|
conntrack \
|
|
dnsmasq \
|
|
dnsmasq-utils \
|
|
ipset \
|
|
iptables \
|
|
openvswitch-switch \
|
|
uuid-runtime \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
ADD neutron-base-archive /neutron-base-source
|
|
RUN ln -s neutron-base-source/* neutron \
|
|
&& useradd --user-group neutron \
|
|
&& /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt /neutron \
|
|
&& mkdir -p /etc/neutron /usr/share/neutron /var/lib/neutron /home/neutron \
|
|
&& cp -r /neutron/etc/* /etc/neutron/ \
|
|
&& cp -r /neutron/etc/neutron/* /etc/neutron/ \
|
|
&& cp /neutron/etc/api-paste.ini /usr/share/neutron \
|
|
&& mv /etc/neutron/neutron/ /etc/neutron/plugins/ \
|
|
&& chown -R neutron: /etc/neutron /usr/share/neutron /var/lib/neutron /home/neutron \
|
|
&& sed -i 's|^exec_dirs.*|exec_dirs=/var/lib/kolla/venv/bin,/sbin,/usr/sbin,/bin,/usr/bin,/usr/local/bin,/usr/local/sbin|g' /etc/neutron/rootwrap.conf
|
|
|
|
{% endif %}
|
|
|
|
COPY neutron_sudoers /etc/sudoers.d/neutron_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN usermod -a -G kolla neutron \
|
|
&& chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/neutron_sudoers \
|
|
&& touch /usr/local/bin/kolla_neutron_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_neutron_extend_start
|