diff options
| author | Mihai Prica <prica.mihai@gmail.com> | 2013-06-11 14:53:44 +0300 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-08-28 18:41:56 -0400 |
| commit | de39adcdbeaa8ed8376ca602bd7a2630de3a5ddf (patch) | |
| tree | 7b32823f85daa1f6d1c90027508266a1584bc868 /meta-openstack/recipes-devtools/python/python-quantum/linuxbridge_conf.ini | |
| parent | 836997160799682eb16c4410952148b888cc8661 (diff) | |
| download | meta-cloud-services-de39adcdbeaa8ed8376ca602bd7a2630de3a5ddf.tar.gz | |
python-quantum: added 2013.1
-Modified the sample configuration files with necessary
credentials.
-Created initscript for the quantum server.
-Configured the openvswitch and linuxbridge plugin agents.
Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-quantum/linuxbridge_conf.ini')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-quantum/linuxbridge_conf.ini | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-quantum/linuxbridge_conf.ini b/meta-openstack/recipes-devtools/python/python-quantum/linuxbridge_conf.ini new file mode 100644 index 0000000..476cd3a --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-quantum/linuxbridge_conf.ini | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | [VLANS] | ||
| 2 | # (StrOpt) Type of network to allocate for tenant networks. The | ||
| 3 | # default value 'local' is useful only for single-box testing and | ||
| 4 | # provides no connectivity between hosts. You MUST change this to | ||
| 5 | # 'vlan' and configure network_vlan_ranges below in order for tenant | ||
| 6 | # networks to provide connectivity between hosts. Set to 'none' to | ||
| 7 | # disable creation of tenant networks. | ||
| 8 | # | ||
| 9 | # Default: tenant_network_type = local | ||
| 10 | # Example: tenant_network_type = vlan | ||
| 11 | |||
| 12 | # (ListOpt) Comma-separated list of | ||
| 13 | # <physical_network>[:<vlan_min>:<vlan_max>] tuples enumerating ranges | ||
| 14 | # of VLAN IDs on named physical networks that are available for | ||
| 15 | # allocation. All physical networks listed are available for flat and | ||
| 16 | # VLAN provider network creation. Specified ranges of VLAN IDs are | ||
| 17 | # available for tenant network allocation if tenant_network_type is | ||
| 18 | # 'vlan'. If empty, only local networks may be created. | ||
| 19 | # | ||
| 20 | # Default: network_vlan_ranges = | ||
| 21 | # Example: network_vlan_ranges = physnet1:1000:2999 | ||
| 22 | |||
| 23 | [DATABASE] | ||
| 24 | # This line MUST be changed to actually run the plugin. | ||
| 25 | # Example: | ||
| 26 | # sql_connection = mysql://root:nova@127.0.0.1:3306/quantum_linux_bridge | ||
| 27 | # Replace 127.0.0.1 above with the IP address of the database used by the | ||
| 28 | # main quantum server. (Leave it as is if the database runs on this host.) | ||
| 29 | sql_connection = postgresql://nova:nova@localhost/quantum | ||
| 30 | # Database reconnection retry times - in event connectivity is lost | ||
| 31 | # set to -1 implies an infinite retry count | ||
| 32 | # sql_max_retries = 10 | ||
| 33 | # Database reconnection interval in seconds - if the initial connection to the | ||
| 34 | # database fails | ||
| 35 | reconnect_interval = 2 | ||
| 36 | # Enable the use of eventlet's db_pool for MySQL. The flags sql_min_pool_size, | ||
| 37 | # sql_max_pool_size and sql_idle_timeout are relevant only if this is enabled. | ||
| 38 | # sql_dbpool_enable = False | ||
| 39 | # Minimum number of SQL connections to keep open in a pool | ||
| 40 | # sql_min_pool_size = 1 | ||
| 41 | # Maximum number of SQL connections to keep open in a pool | ||
| 42 | # sql_max_pool_size = 5 | ||
| 43 | # Timeout in seconds before idle sql connections are reaped | ||
| 44 | # sql_idle_timeout = 3600 | ||
| 45 | |||
| 46 | [LINUX_BRIDGE] | ||
| 47 | # (ListOpt) Comma-separated list of | ||
| 48 | # <physical_network>:<physical_interface> tuples mapping physical | ||
| 49 | # network names to the agent's node-specific physical network | ||
| 50 | # interfaces to be used for flat and VLAN networks. All physical | ||
| 51 | # networks listed in network_vlan_ranges on the server should have | ||
| 52 | # mappings to appropriate interfaces on each agent. | ||
| 53 | # | ||
| 54 | # Default: physical_interface_mappings = | ||
| 55 | # Example: physical_interface_mappings = physnet1:eth1 | ||
| 56 | |||
| 57 | [AGENT] | ||
| 58 | # Agent's polling interval in seconds | ||
| 59 | polling_interval = 2 | ||
| 60 | |||
| 61 | [SECURITYGROUP] | ||
| 62 | # Firewall driver for realizing quantum security group function | ||
| 63 | firewall_driver = quantum.agent.linux.iptables_firewall.IptablesFirewallDriver | ||
