Skip to content

Commit

Permalink
Merge "XenAPI: Remove ovs_integration_bridge default value"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Dec 17, 2016
2 parents b6286f4 + c4a88d5 commit adca1b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
7 changes: 3 additions & 4 deletions nova/conf/xenserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
XenServer options are used when the compute_driver is set to use
XenServer (compute_driver=xenapi.XenAPIDriver).
Must specify connection_url, and connection_password to use
compute_driver=xenapi.XenAPIDriver.
Must specify connection_url, connection_password and ovs_integration_bridge to
use compute_driver=xenapi.XenAPIDriver.
""")

xenapi_agent_opts = [
Expand Down Expand Up @@ -596,7 +596,6 @@

xenapi_ovs_integration_bridge_opts = [
cfg.StrOpt('ovs_integration_bridge',
default='xapi1',
help="""
The name of the integration Bridge that is used with xenapi
when connecting with Open vSwitch.
Expand All @@ -607,7 +606,7 @@
Possible values:
* Any string that represents a bridge name(default is xapi1).
* Any string that represents a bridge name.
"""),
]

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
upgrade:
- >
XenServer users must now set the value of xenserver.ovs_integration_bridge before they
can use the system. Previously this had a default of "xapi1", which has now been
removed, because it is dependent on the environment. The xapi<n> are internal bridges
that are incrementally defined from zero and "xapi1" may not be the correct bridge.
Operators should set this config value to the integration bridge used between all
guests and the compute host in their environment.

0 comments on commit adca1b5

Please sign in to comment.