summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-quantum/ovs_quantum_plugin.ini
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2013-10-31 00:22:52 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-11-25 15:25:34 -0500
commita5a59d040b5db77a06346a516d30566a21d41586 (patch)
tree4de8d0e5f26396e1a66f668eec38d7b3bbb1465f /meta-openstack/recipes-devtools/python/python-quantum/ovs_quantum_plugin.ini
parent0a962a285a529def3d3649544214bc36c9292d18 (diff)
downloadmeta-cloud-services-a5a59d040b5db77a06346a516d30566a21d41586.tar.gz
python-quantum/python-neutron: update to havana version
Updating the OpenStack networking component to the havana release version. As part of this switch, we rename the components from quantum to neutron and switch to a git based build for the client and servers. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-quantum/ovs_quantum_plugin.ini')
-rw-r--r--meta-openstack/recipes-devtools/python/python-quantum/ovs_quantum_plugin.ini133
1 files changed, 0 insertions, 133 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-quantum/ovs_quantum_plugin.ini b/meta-openstack/recipes-devtools/python/python-quantum/ovs_quantum_plugin.ini
deleted file mode 100644
index 0981afe..0000000
--- a/meta-openstack/recipes-devtools/python/python-quantum/ovs_quantum_plugin.ini
+++ /dev/null
@@ -1,133 +0,0 @@
1[DATABASE]
2# This line MUST be changed to actually run the plugin.
3# Example:
4# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
5# Replace 127.0.0.1 above with the IP address of the database used by the
6# main quantum server. (Leave it as is if the database runs on this host.)
7
8# configs with listening issues, may need to use the localhost version
9# sql_connection = postgresql://%DB_USER%:%DB_PASSWORD%@localhost/ovs_quantum
10sql_connection = postgresql://%DB_USER%:%DB_PASSWORD%@%CONTROLLER_IP%/ovs_quantum
11# Database reconnection retry times - in event connectivity is lost
12# set to -1 implies an infinite retry count
13# sql_max_retries = 10
14# Database reconnection interval in seconds - if the initial connection to the
15# database fails
16reconnect_interval = 2
17# Enable the use of eventlet's db_pool for MySQL. The flags sql_min_pool_size,
18# sql_max_pool_size and sql_idle_timeout are relevant only if this is enabled.
19# sql_dbpool_enable = False
20# Minimum number of SQL connections to keep open in a pool
21# sql_min_pool_size = 1
22# Maximum number of SQL connections to keep open in a pool
23# sql_max_pool_size = 5
24# Timeout in seconds before idle sql connections are reaped
25# sql_idle_timeout = 3600
26
27[OVS]
28# (StrOpt) Type of network to allocate for tenant networks. The
29# default value 'local' is useful only for single-box testing and
30# provides no connectivity between hosts. You MUST either change this
31# to 'vlan' and configure network_vlan_ranges below or change this to
32# 'gre' and configure tunnel_id_ranges below in order for tenant
33# networks to provide connectivity between hosts. Set to 'none' to
34# disable creation of tenant networks.
35#
36# Default: tenant_network_type = local
37# Example: tenant_network_type = gre
38tenant_network_type = gre
39
40# (ListOpt) Comma-separated list of
41# <physical_network>[:<vlan_min>:<vlan_max>] tuples enumerating ranges
42# of VLAN IDs on named physical networks that are available for
43# allocation. All physical networks listed are available for flat and
44# VLAN provider network creation. Specified ranges of VLAN IDs are
45# available for tenant network allocation if tenant_network_type is
46# 'vlan'. If empty, only gre and local networks may be created.
47#
48# Default: network_vlan_ranges =
49# Example: network_vlan_ranges = physnet1:1000:2999
50
51# (BoolOpt) Set to True in the server and the agents to enable support
52# for GRE networks. Requires kernel support for OVS patch ports and
53# GRE tunneling.
54#
55# Default: enable_tunneling = False
56enable_tunneling = True
57
58# (ListOpt) Comma-separated list of <tun_min>:<tun_max> tuples
59# enumerating ranges of GRE tunnel IDs that are available for tenant
60# network allocation if tenant_network_type is 'gre'.
61#
62# Default: tunnel_id_ranges =
63# Example: tunnel_id_ranges = 1:1000
64tunnel_id_ranges = 1:1000
65
66# Do not change this parameter unless you have a good reason to.
67# This is the name of the OVS integration bridge. There is one per hypervisor.
68# The integration bridge acts as a virtual "patch bay". All VM VIFs are
69# attached to this bridge and then "patched" according to their network
70# connectivity.
71#
72# Default: integration_bridge = br-int
73
74# Only used for the agent if tunnel_id_ranges (above) is not empty for
75# the server. In most cases, the default value should be fine.
76#
77# Default: tunnel_bridge = br-tun
78
79# Peer patch port in integration bridge for tunnel bridge
80# int_peer_patch_port = patch-tun
81
82# Peer patch port in tunnel bridge for integration bridge
83# tun_peer_patch_port = patch-int
84
85# Uncomment this line for the agent if tunnel_id_ranges (above) is not
86# empty for the server. Set local-ip to be the local IP address of
87# this hypervisor.
88#
89# Default: local_ip =
90
91# (ListOpt) Comma-separated list of <physical_network>:<bridge> tuples
92# mapping physical network names to the agent's node-specific OVS
93# bridge names to be used for flat and VLAN networks. The length of
94# bridge names should be no more than 11. Each bridge must
95# exist, and should have a physical network interface configured as a
96# port. All physical networks listed in network_vlan_ranges on the
97# server should have mappings to appropriate bridges on each agent.
98#
99# Default: bridge_mappings =
100# Example: bridge_mappings = physnet1:br-eth1
101
102[AGENT]
103# Agent's polling interval in seconds
104polling_interval = 2
105
106[SECURITYGROUP]
107# Firewall driver for realizing quantum security group function
108# firewall_driver = quantum.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
109
110#-----------------------------------------------------------------------------
111# Sample Configurations.
112#-----------------------------------------------------------------------------
113#
114# 1. With VLANs on eth1.
115# [DATABASE]
116# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
117# [OVS]
118# network_vlan_ranges = default:2000:3999
119# tunnel_id_ranges =
120# integration_bridge = br-int
121# bridge_mappings = default:br-eth1
122# [AGENT]
123# Add the following setting, if you want to log to a file
124#
125# 2. With tunneling.
126# [DATABASE]
127# sql_connection = mysql://root:nova@127.0.0.1:3306/ovs_quantum
128# [OVS]
129# network_vlan_ranges =
130# tunnel_id_ranges = 1:1000
131# integration_bridge = br-int
132# tunnel_bridge = br-tun
133# local_ip = 10.0.0.3