cdd5188093
Changes in config were made to allow for automatic HA failover of Neutron Routers. (input from Phill Hopkins) Removes the ATT L3 HA tool as this functionality is now baked into Neutron proper. Removed package and git vars from group_vars/neutron_all.yml and change the plays to use the values in repo_pacakge/neutron.yml removed redundant tasks in all neutron plays.
91 lines
2.6 KiB
YAML
91 lines
2.6 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# 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.
|
|
|
|
# The variables file used by the playbooks in the nova group.
|
|
# These don't have to be explicitly imported by vars_files: they are autopopulated.
|
|
|
|
## Service Name
|
|
service_name: neutron
|
|
|
|
# Verbosity Options
|
|
debug: False
|
|
verbose: True
|
|
|
|
## only used when the lxc vg is present on the target
|
|
container_lvm_fstype: ext4
|
|
container_lvm_fssize: 5GB
|
|
|
|
## General configuration
|
|
core_plugin: neutron.plugins.ml2.plugin.Ml2Plugin
|
|
interface_driver: neutron.agent.linux.interface.BridgeInterfaceDriver
|
|
metering_driver: neutron.services.metering.drivers.iptables.iptables_driver.IptablesMeteringDriver
|
|
|
|
service_plugins:
|
|
- neutron.services.l3_router.l3_router_plugin.L3RouterPlugin
|
|
- neutron.services.loadbalancer.plugin.LoadBalancerPlugin
|
|
- neutron.services.firewall.fwaas_plugin.FirewallPlugin
|
|
- neutron.services.vpn.plugin.VPNDriverPlugin
|
|
- neutron.services.metering.metering_plugin.MeteringPlugin
|
|
|
|
dhcp_driver: neutron.agent.linux.dhcp.Dnsmasq
|
|
neutron_config: /etc/neutron/neutron.conf
|
|
neutron_plugin: /etc/neutron/plugins/ml2/ml2_conf.ini
|
|
neutron_revision: head
|
|
|
|
## Neutron downtime
|
|
neutron_agent_down_time: 120
|
|
neutron_report_interval: "{{ neutron_agent_down_time|int / 2 }}"
|
|
neutron_agent_polling_interval: 5
|
|
|
|
## DB
|
|
container_mysql_user: neutron
|
|
container_mysql_password: "{{ neutron_container_mysql_password }}"
|
|
container_database: neutron
|
|
|
|
## RPC
|
|
rpc_backend: rabbit
|
|
|
|
## Nova Auth
|
|
service_admin_tenant_name: "service"
|
|
service_admin_username: "neutron"
|
|
service_admin_password: "{{ neutron_service_password }}"
|
|
|
|
## Nova User / Group
|
|
system_user: neutron
|
|
system_group: neutron
|
|
|
|
## Service Names
|
|
service_names:
|
|
- neutron-agent
|
|
- neutron-dhcp-agent
|
|
- neutron-linuxbridge-agent
|
|
- neutron-metadata-agent
|
|
- neutron-metering-agent
|
|
- neutron-l3-agent
|
|
- neutron-server
|
|
|
|
container_directories:
|
|
- /etc/neutron
|
|
- /etc/neutron/plugins
|
|
- /etc/neutron/plugins/ml2
|
|
- /etc/neutron/rootwrap.d
|
|
- /var/cache/neutron
|
|
- /var/lib/neutron
|
|
- /var/lib/neutron/ha_confs
|
|
- /var/lock/neutron
|
|
- /var/log/neutron
|
|
- /var/run/neutron
|
|
|