~openstack-charmers-next/charms/precise/neutron-openvswitch/trunk

« back to all changes in this revision

Viewing changes to README.md

  • Committer: Gerrit Code Review
  • Author(s): Jenkins
  • Date: 2016-03-31 23:39:17 UTC
  • mfrom: (114.1.1 trunk)
  • Revision ID: review@openstack.org-20160331233917-3wtiviprt1z2xcmn
Merge "Add Juju Network Space support"

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
        - {name: neutron,
133
133
           repository: 'git://github.com/openstack/neutron',
134
134
           branch: master}
 
135
 
 
136
# Network Spaces support
 
137
 
 
138
This charm supports the use of Juju Network Spaces, allowing the charm to be bound to network space configurations managed directly by Juju.  This is only supported with Juju 2.0 and above.
 
139
 
 
140
Open vSwitch endpoints can be configured using the 'data' extra-binding, ensuring that tunnel traffic is routed across the correct host network interfaces:
 
141
 
 
142
    juju deploy neutron-openvswitch --bind "data=data-space"
 
143
 
 
144
alternatively these can also be provided as part of a juju native bundle configuration:
 
145
 
 
146
    neutron-openvswitch:
 
147
      charm: cs:xenial/neutron-openvswitch
 
148
      bindings:
 
149
        data: data-space
 
150
 
 
151
NOTE: Spaces must be configured in the underlying provider prior to attempting to use them.
 
152
 
 
153
NOTE: Existing deployments using os-data-network configuration options will continue to function; this option is preferred over any network space binding provided if set.