aaedb4a150
Adding daemonset for Linux bridge. Using node selector "linuxbridge enabled". network.backend added in neutron/values.yaml to support scenario for different SDNs using the same networking software, like OVS is used for reference Neutron L2 agent, ODL, OVN and SONA. The other option for network.backend can be linuxbridge and calico. network.backend impacts configuration of DHCP, L3 and metadata agents. Those agents are dependent on ovsdb_connection flag (officially it is placed in openvswitch_agent.ini file). Added daemonset_lb_agent flag in manifests section. Currently OVS and LinuxBridge L2 agents can be turned on/off to be deployed. OVS L2 agent and OVS as a network virtualization SW can be deployed independently. Removed conf.neutron.default.neutron.interface_driver, since it was not used anywhere. Marked places in neutron/values.yaml where changes are needed in order to use linuxbridge for: - neutron.conf interface_driver - ML2 mechanism driver - dhcp and l3 agents interface_driver Added example of neutron values overrides in: tools/overrides/mvp/neutron-linuxbridge.yaml Change-Id: I7cdcfaa9a73af392a0d45f7df29b7b3ae3cc4c76 Implements: blueprint support-linux-bridge-on-neutron
27 lines
899 B
Smarty
27 lines
899 B
Smarty
#!/bin/bash
|
|
|
|
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
set -x
|
|
exec neutron-l3-agent \
|
|
--config-file /etc/neutron/neutron.conf \
|
|
--config-file /etc/neutron/l3_agent.ini \
|
|
--config-file /etc/neutron/plugins/ml2/ml2_conf.ini
|
|
{{- if eq .Values.network.backend "ovs" }} \
|
|
--config-file /etc/neutron/plugins/ml2/openvswitch_agent.ini
|
|
{{- end }}
|