~ubuntu-branches/ubuntu/raring/quantum/raring-proposed

« back to all changes in this revision

Viewing changes to .pc/fix-quantum-configuration.patch/etc/quantum/plugins/nicira/nvp.ini

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Yolanda Robla, James Page, Maru Newby
  • Date: 2013-01-11 09:14:35 UTC
  • mfrom: (2.1.17)
  • Revision ID: package-import@ubuntu.com-20130111091435-vaup7dwmtmajy5oe
Tags: 2013.1~g2-0ubuntu1
[ Chuck Short ]
* New upstream version. 
* debian/patches/fix-quantum-configuration.patch: Refreshed.

[ Yolanda Robla ]
* debian/quantum-l3-agent.quantum-metadata-agent.upstart: Add
  upstart configuration for Metadata Agent.
* debian/quantum-l3-agent.install: Added quantum-ns-metadata-proxy,
  quantum-metadata-agent and metadata_agent.ini.
* debian/patches/fix-quantum-configuration.patch: Update rootwrap
  configuration in metadata_agent.ini file.
* debian/changelog: Updated package version
* d/p/fix-quantum-configuration.patch: refresh patches

[ James Page ]
* d/*.install: Install entry points from bin directory instead
  of easy-install ones generated during the package build process
  (LP: #1085038).
* d/control: Drop BD on python-dev-all; its not required.
* d/rules: Install multiple upstart configurations for quantum-l3-agent.
* d/control: Tidy package descriptions.
* d/*.postrm: Drop as debhelper will generate update-rc.d calls in
  maintainer scripts if required.
* d/quantum-common.postinst: Tweak permissions setting so that /etc/quantum
  is not owned/writable by the quantum user, ensure that /etc/quantum/rootwrap*
  is owned by root:root.
* d/*agent*.postinst: Dropped as permissions now correctly set in
  quantum-common.
* d/patches/fix-quantum-configuration.patch: Re-add dropped fixes rootwrap and
  sqlite defaults for all plugins.
* d/control: Added new BD on alembic (>= 0.4.1~), version python-mock >= 1.0b1.

[ Maru Newby ]
* debian/control: Remove unnecessary openvswitch-vswitch dependency
  from quantum-plugin-openvswitch (LP: #1076747).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[DEFAULT]
 
2
 
 
3
[DATABASE]
 
4
# This line MUST be changed to actually run the plugin.
 
5
# Example:
 
6
# sql_connection = mysql://root:quantum@127.0.0.1:3306/nvp_quantum
 
7
# Replace 127.0.0.1 above with the IP address of the database used by the
 
8
# main quantum server. (Leave it as is if the database runs on this host.)
 
9
sql_connection = sqlite://
 
10
# Database reconnection retry times - in event connectivity is lost
 
11
# set to -1 implies an infinite retry count
 
12
# sql_max_retries = 10
 
13
# Database reconnection interval in seconds - if the initial connection to the
 
14
# database fails
 
15
reconnect_interval = 2
 
16
# Enable the use of eventlet's db_pool for MySQL. The flags sql_min_pool_size,
 
17
# sql_max_pool_size and sql_idle_timeout are relevant only if this is enabled.
 
18
# sql_dbpool_enable = False
 
19
# Minimum number of SQL connections to keep open in a pool
 
20
# sql_min_pool_size = 1
 
21
# Maximum number of SQL connections to keep open in a pool
 
22
# sql_max_pool_size = 5
 
23
# Timeout in seconds before idle sql connections are reaped
 
24
# sql_idle_timeout = 3600
 
25
 
 
26
[NVP]
 
27
# Maximum number of ports for each bridged logical switch
 
28
# max_lp_per_bridged_ls = 64
 
29
# Maximum number of ports for each overlay (stt, gre) logical switch
 
30
# max_lp_per_overlay_ls = 256
 
31
# Time from when a connection pool is switched to another controller
 
32
# during failure.
 
33
# failover_time = 5
 
34
# Number of connects to each controller node.
 
35
# concurrent_connections = 3
 
36
# Name of the default cluster where requests should be sent if a nova zone id
 
37
# is not specified. If it is empty or reference a non-existent cluster
 
38
# the first cluster specified in this configuration file will be used
 
39
# default_cluster_name =
 
40
 
 
41
#[CLUSTER:example]
 
42
# This is uuid of the default NVP Transport zone that will be used for
 
43
# creating tunneled isolated "Quantum" networks.  It needs to be created in
 
44
# NVP before starting Quantum with the nvp plugin.
 
45
# default_tz_uuid = 1e8e52cf-fa7f-46b0-a14a-f99835a9cb53
 
46
 
 
47
# Nova "zone" that maps to this NVP cluster.  This should map to the
 
48
# node_availability_zone in your nova.conf for each nova cluster.  Each nova
 
49
# cluster should have a unique node_availability_zone set.
 
50
# nova_zone_id = zone1 # (Optional)
 
51
 
 
52
# UUID of the cluster in NVP.  This can be retrieved from NVP management
 
53
# console "admin" section.
 
54
# nvp_cluster_uuid = 615be8e4-82e9-4fd2-b4b3-fd141e51a5a7 # (Optional)
 
55
 
 
56
# This parameter describes a connection to a single NVP controller. Format:
 
57
# <ip>:<port>:<user>:<pw>:<req_timeout>:<http_timeout>:<retries>:<redirects>
 
58
# <ip> is the ip address of the controller
 
59
# <port> is the port of the controller (default NVP port is 443)
 
60
# <user> is the user name for this controller
 
61
# <pw> is the user password.
 
62
# <req_timeout>: The total time limit on all operations for a controller
 
63
#   request (including retries, redirects from unresponsive controllers).
 
64
#   Default is 30.
 
65
# <http_timeout>: How long to wait before aborting an unresponsive controller
 
66
#   (and allow for retries to another controller in the cluster).
 
67
#   Default is 10.
 
68
# <retries>: the maximum number of times to retry a particular request
 
69
#   Default is 2.
 
70
# <redirects>: the maximum number of times to follow a redirect response from a server.
 
71
#   Default is 2.
 
72
# There must be at least one nvp_controller_connection per system or per cluster.
 
73
# nvp_controller_connection=10.0.1.2:443:admin:admin:30:10:2:2
 
74
# nvp_controller_connection=10.0.1.3:443:admin:admin:30:10:2:2
 
75
# nvp_controller_connection=10.0.1.4:443:admin:admin:30:10:2:2