Add conntrack-tools
Conntrack is used by neutron as a dep, but not installed in the source containers. This leads to errors in the log and in some cases network instability. Change-Id: Ie6eae7530bf4e378eedb852a16ed8595402113a6 Closes-Bug: #1561008
This commit is contained in:
parent
73f55d3d6f
commit
27975f8ab5
@ -14,8 +14,8 @@ RUN yum -y install \
|
|||||||
|
|
||||||
RUN apt-get install -y --no-install-recommends \
|
RUN apt-get install -y --no-install-recommends \
|
||||||
neutron-plugin-ml2 \
|
neutron-plugin-ml2 \
|
||||||
openvswitch-switch \
|
|
||||||
neutron-server \
|
neutron-server \
|
||||||
|
openvswitch-switch \
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& mkdir -p /usr/share/neutron \
|
&& mkdir -p /usr/share/neutron \
|
||||||
&& ln -s /etc/neutron/api-paste.ini /usr/share/neutron/api-paste.ini
|
&& ln -s /etc/neutron/api-paste.ini /usr/share/neutron/api-paste.ini
|
||||||
@ -25,16 +25,18 @@ RUN apt-get install -y --no-install-recommends \
|
|||||||
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
||||||
|
|
||||||
RUN yum -y install \
|
RUN yum -y install \
|
||||||
uuid \
|
conntrack-tools \
|
||||||
dnsmasq \
|
dnsmasq \
|
||||||
ipset \
|
ipset \
|
||||||
openvswitch \
|
openvswitch \
|
||||||
|
uuid \
|
||||||
&& yum clean all
|
&& yum clean all
|
||||||
|
|
||||||
{% elif base_distro in ['ubuntu', 'debian'] %}
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
||||||
|
|
||||||
RUN apt-get install -y --no-install-recommends \
|
RUN apt-get install -y --no-install-recommends \
|
||||||
arping \
|
arping \
|
||||||
|
conntrack \
|
||||||
dnsmasq \
|
dnsmasq \
|
||||||
ipset \
|
ipset \
|
||||||
iptables \
|
iptables \
|
||||||
|
Loading…
Reference in New Issue
Block a user