Fix the native ovsdb_interace failed
Closes-Bug: #1598977 Change-Id: I8be53531c2ba000c3b73d0f957dcc50fe947c925
This commit is contained in:
parent
9b05eb87b8
commit
10258f138b
@ -52,6 +52,7 @@ arp_responder = true
|
||||
|
||||
[ovs]
|
||||
bridge_mappings = physnet1:{{ neutron_bridge_name }}
|
||||
ovsdb_connection = tcp:{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}:6640
|
||||
{% if enable_nova_fake | bool %}
|
||||
integration_bridge = br-int-{{ item }}
|
||||
{% endif %}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"command": "neutron-dhcp-agent --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/dhcp_agent.ini",
|
||||
"command": "neutron-dhcp-agent --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini --config-file /etc/neutron/dhcp_agent.ini",
|
||||
"config_files": [
|
||||
{
|
||||
"source": "{{ container_config_directory }}/neutron.conf",
|
||||
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"command": "/usr/sbin/ovsdb-server /etc/openvswitch/conf.db -vconsole:emer -vsyslog:err -vfile:info --remote=punix:/run/openvswitch/db.sock --log-file=/var/log/kolla/openvswitch/ovsdb-server.log",
|
||||
"command": "/usr/sbin/ovsdb-server /etc/openvswitch/conf.db -vconsole:emer -vsyslog:err -vfile:info --remote=punix:/run/openvswitch/db.sock --remote=ptcp:6640:{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }} --log-file=/var/log/kolla/openvswitch/ovsdb-server.log",
|
||||
"config_files": []
|
||||
}
|
||||
|
@ -9,6 +9,7 @@ RUN yum -y install \
|
||||
openstack-neutron-ml2 \
|
||||
openvswitch \
|
||||
openstack-neutron-lbaas \
|
||||
python-openvswitch \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
@ -17,6 +18,7 @@ RUN apt-get -y install --no-install-recommends \
|
||||
neutron-plugin-ml2 \
|
||||
neutron-server \
|
||||
openvswitch-switch \
|
||||
python-openvswitch \
|
||||
neutron-lbaas-agent \
|
||||
&& apt-get clean \
|
||||
&& mkdir -p /usr/share/neutron \
|
||||
@ -32,6 +34,7 @@ RUN yum -y install \
|
||||
dnsmasq-utils \
|
||||
ipset \
|
||||
openvswitch \
|
||||
python-openvswitch \
|
||||
uuid \
|
||||
&& yum clean all
|
||||
|
||||
@ -45,6 +48,7 @@ RUN apt-get -y install --no-install-recommends \
|
||||
ipset \
|
||||
iptables \
|
||||
openvswitch-switch \
|
||||
python-openvswitch \
|
||||
uuid-runtime \
|
||||
&& apt-get clean
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user