anvil/conf/components/neutron.yaml
Kris Lindgren e35bb6e6c5 Adding deamon args for neutron-openvswitch-agent
Change-Id: I1fa21d4e6bfcdf7096b03a5aefc31b306ac9588f
2014-02-26 13:29:58 -07:00

31 lines
1.2 KiB
YAML

# Settings for component neutron-client
---
# Host and ports for the different neutron services
api_host: "$(auto:ip)"
api_port: 9696
protocol: http
# Used for associating the client package with a human understandable
# name in its package description (not a code-name, like neutron).
api_name: "Networking"
core_plugin: openvswitch
use_namespaces: True
network_vlan_ranges: physnet1:100:299
physical_interface_mappings: physnet1:100:299
external_bridge: br-ex
integration_bridge: br-int
# When building a package for the neutron the arguments to the individual daemons
# will be expanded to include the following runtime arguments.
daemon_args:
neutron-server: "'--config-file=/etc/neutron/plugin.ini --config-file=/etc/neutron/neutron.conf'"
neutron-l3-agent: "'--config-file=/etc/neutron/l3_agent.ini --config-file=/etc/neutron/neutron.conf'"
neutron-dhcp-agent: "'--config-file=/etc/neutron/dhcp_agent.ini --config-file=/etc/neutron/neutron.conf'"
neutron-metadata-agent: "'--config-file=/etc/neutron/metadata_agent.ini --config-file=/etc/neutron/neutron.conf'"
neutron-openvswitch-agent: "'--config-file=/etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini --config-file=/etc/neutron/neutron.conf'"
...