Merge "Update neutron confs and ports"
This commit is contained in:
commit
e323cbe11e
@ -1,4 +1,3 @@
|
|||||||
# dhcp_agent.ini
|
# dhcp_agent.ini
|
||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
dnsmasq_config_file = /etc/neutron/dnsmasq.conf
|
dnsmasq_config_file = /etc/neutron/dnsmasq.conf
|
||||||
dhcp_delete_namespaces = true
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# l3_agent.ini
|
# l3_agent.ini
|
||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
router_delete_namespaces = true
|
|
||||||
enable_metadata_proxy = true
|
|
||||||
agent_mode = legacy
|
agent_mode = legacy
|
||||||
external_network_bridge =
|
external_network_bridge =
|
||||||
|
@ -2,12 +2,3 @@
|
|||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
nova_metadata_ip = {{ kolla_internal_address }}
|
nova_metadata_ip = {{ kolla_internal_address }}
|
||||||
metadata_proxy_shared_secret = {{ metadata_secret }}
|
metadata_proxy_shared_secret = {{ metadata_secret }}
|
||||||
auth_uri = http://{{ kolla_internal_address }}:{{ keystone_public_port }}
|
|
||||||
auth_url = http://{{ kolla_internal_address }}:{{ keystone_admin_port }}
|
|
||||||
auth_region = {{ openstack_region_name }}
|
|
||||||
auth_plugin = password
|
|
||||||
project_domain_id = default
|
|
||||||
user_domain_id = default
|
|
||||||
project_name = service
|
|
||||||
username = neutron
|
|
||||||
password = {{ neutron_keystone_password }}
|
|
||||||
|
@ -11,14 +11,11 @@ mechanism_drivers = linuxbridge,l2population
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
[ml2_type_vlan]
|
[ml2_type_vlan]
|
||||||
#network_vlan_ranges = external:1000:1999
|
network_vlan_ranges =
|
||||||
|
|
||||||
[ml2_type_flat]
|
[ml2_type_flat]
|
||||||
flat_networks = physnet1
|
flat_networks = physnet1
|
||||||
|
|
||||||
[ml2_type_gre]
|
|
||||||
tunnel_id_ranges = 1:1000
|
|
||||||
|
|
||||||
[ml2_type_vxlan]
|
[ml2_type_vxlan]
|
||||||
vni_ranges = 1:1000
|
vni_ranges = 1:1000
|
||||||
vxlan_group = 239.1.1.1
|
vxlan_group = 239.1.1.1
|
||||||
@ -29,15 +26,13 @@ firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewal
|
|||||||
{% elif neutron_plugin_agent == "linuxbridge" %}
|
{% elif neutron_plugin_agent == "linuxbridge" %}
|
||||||
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
|
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
|
||||||
{% endif %}
|
{% endif %}
|
||||||
enable_ipset = true
|
|
||||||
enable_security_group = true
|
|
||||||
|
|
||||||
|
{% if neutron_plugin_agent == "openvswitch" %}
|
||||||
[agent]
|
[agent]
|
||||||
tunnel_types = vxlan
|
tunnel_types = vxlan
|
||||||
l2_population = true
|
l2_population = true
|
||||||
arp_responder = true
|
arp_responder = true
|
||||||
|
|
||||||
{% if neutron_plugin_agent == "openvswitch" %}
|
|
||||||
[ovs]
|
[ovs]
|
||||||
bridge_mappings = physnet1:{{ neutron_bridge_name }}
|
bridge_mappings = physnet1:{{ neutron_bridge_name }}
|
||||||
{% elif neutron_plugin_agent == "linuxbridge" %}
|
{% elif neutron_plugin_agent == "linuxbridge" %}
|
||||||
|
@ -4,11 +4,12 @@ verbose = true
|
|||||||
debug = true
|
debug = true
|
||||||
|
|
||||||
bind_host = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
|
bind_host = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
|
||||||
|
bind_port = {{ neutron_server_port }}
|
||||||
|
|
||||||
lock_path = /var/lock/neutron
|
#lock_path = /var/lock/neutron
|
||||||
api_paste_config = /usr/share/neutron/api-paste.ini
|
api_paste_config = /usr/share/neutron/api-paste.ini
|
||||||
|
|
||||||
notification_driver = neutron.openstack.common.notifier.rpc_notifier
|
notification_driver = noop
|
||||||
|
|
||||||
{% if neutron_plugin_agent == "openvswitch" %}
|
{% if neutron_plugin_agent == "openvswitch" %}
|
||||||
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
|
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
|
||||||
@ -20,11 +21,6 @@ allow_overlapping_ips = true
|
|||||||
core_plugin = ml2
|
core_plugin = ml2
|
||||||
service_plugins = router
|
service_plugins = router
|
||||||
|
|
||||||
|
|
||||||
nova_url = http://{{ kolla_internal_address }}:{{ nova_api_port }}/v2
|
|
||||||
notify_nova_on_port_data_changes = True
|
|
||||||
notify_nova_on_port_status_change = True
|
|
||||||
|
|
||||||
[nova]
|
[nova]
|
||||||
auth_url = http://{{ kolla_internal_address }}:{{ keystone_admin_port }}
|
auth_url = http://{{ kolla_internal_address }}:{{ keystone_admin_port }}
|
||||||
auth_plugin = password
|
auth_plugin = password
|
||||||
@ -35,6 +31,9 @@ project_name = service
|
|||||||
username = nova
|
username = nova
|
||||||
password = {{ nova_keystone_password }}
|
password = {{ nova_keystone_password }}
|
||||||
|
|
||||||
|
[oslo_concurrency]
|
||||||
|
lock_path = /var/lib/neutron/tmp
|
||||||
|
|
||||||
[oslo_messaging_rabbit]
|
[oslo_messaging_rabbit]
|
||||||
rabbit_host = {{ kolla_internal_address }}
|
rabbit_host = {{ kolla_internal_address }}
|
||||||
rabbit_userid = {{ rabbitmq_user }}
|
rabbit_userid = {{ rabbitmq_user }}
|
||||||
|
Loading…
Reference in New Issue
Block a user