diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-07-06 10:54:32 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-07-06 10:54:32 +0000 |
commit | 25caba5ce844c722e590333be87a0a7346f02a35 (patch) | |
tree | 45f512f335d67e87e4ffc657b00cfbad43bfd9e6 /environments | |
parent | c24cec0fa70370d548c055c5977e8a2da1f2531b (diff) | |
parent | 6a151ec6974a658b8ff4c3116b405da99e242ced (diff) |
Merge "Enable Neutron LBaaS Integration"
Diffstat (limited to 'environments')
-rw-r--r-- | environments/services/neutron-lbaasv2.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/environments/services/neutron-lbaasv2.yaml b/environments/services/neutron-lbaasv2.yaml new file mode 100644 index 00000000..9dee74ea --- /dev/null +++ b/environments/services/neutron-lbaasv2.yaml @@ -0,0 +1,17 @@ +# A Heat environment file that can be used to deploy Neutron LBaaSv2 service +# +# Currently there are only two interface drivers for Neutron LBaaSv2 +# The default option is the standard OVS driver the other option is to be used +# when linux bridges are used instead of OVS +# In order to enable other backend, replace the content of NeutronLbaasInterfaceDriver +# +# - OVS: neutron.agent.linux.interface.OVSInterfaceDriver +# - LinuxBridges: neutron.agent.linux.interface.BridgeInterfaceDriver +resource_registry: + OS::TripleO::Services::NeutronLbaas: ../puppet/services/neutron-lbaas.yaml + +parameter_defaults: + NeutronLbaasInterfaceDriver: "neutron.agent.linux.interface.OVSInterfaceDriver" + NeutronLbaasDeviceDriver: "neutron.services.loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver" + NeutronServiceProviders: ['LOADBALANCERV2:Haproxy:neutron_lbaas.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default'] + |