anvil/conf/components/neutron.yaml
Ivan A. Melnikov cd5cd9b523 Rename quantum to neutron mechanically
Quantum is now called neutron, so we should do the renaming, too.
This commit is the result of simple mechanical search-and-replace
followed by renaming files, followed by reordering imports to make
pep8 happy.

Building of binary RPMs is still broken, as well as many other things,
but this will be fixed in separate changes.

Partial-bug: #1198041
Co-authored-by: Joshua Harlow <harlowja@gmail.com>
Change-Id: Idd1cce74309e67fd6bbb1348f40fcc9946703fc2
2013-08-07 20:51:28 +03:00

25 lines
836 B
YAML

# Settings for component neutron-client
---
# Where we download this from...
get_from: "git://github.com/openstack/neutron.git?branch=master"
# Host and ports for the different neutron services
api_host: "$(auto:ip)"
api_port: 9696
protocol: http
core_plugin: openvswitch
network_vlan_ranges: physnet1:100:299
physical_interface_mappings: physnet1:100:299
# 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'"
...