
This PR ensures that the environment is always pointing at a frozen repository of PIP packages which consists of prebuilt wheels. A script was created to allow for packages and apps to be easily updated. Resolves: * https://github.com/rcbops/ansible-lxc-rpc/issues/113 * https://github.com/rcbops/ansible-lxc-rpc/issues/120 Begins resolving: * https://github.com/rcbops/ansible-lxc-rpc/issues/31 * https://github.com/rcbops/ansible-lxc-rpc/issues/53 set all project group_vars to a given sha added retry added tempest
114 lines
3.1 KiB
YAML
114 lines
3.1 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: icehouse
|
|
|
|
## 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
|
|
|
|
## Git Source
|
|
## ALL of this has been relocated to vars/repo_packages
|
|
## TODO(someone) this should be removed once the repo bits are all figured out.
|
|
git_repo: https://git.openstack.org/openstack/neutron
|
|
git_fallback_repo: https://github.com/openstack/neutron
|
|
git_etc_example: etc/
|
|
git_install_branch: fd1221124b8f53a61731e51b5f923af44ec5598f
|
|
|
|
service_pip_dependencies:
|
|
- MySQL-python
|
|
- python-memcached
|
|
- pycrypto
|
|
- repoze.lru
|
|
- configobj
|
|
- cliff
|
|
- python-novaclient
|
|
- python-neutronclient
|
|
- python-keystoneclient
|
|
- keystonemiddleware
|
|
|
|
container_directories:
|
|
- /etc/neutron
|
|
- /etc/neutron/plugins
|
|
- /etc/neutron/plugins/ml2
|
|
- /etc/neutron/rootwrap.d
|
|
- /var/cache/neutron
|
|
- /var/lib/neutron
|
|
- /var/lock/neutron
|
|
- /var/log/neutron
|
|
- /var/run/neutron
|
|
|
|
container_packages:
|
|
- libpq-dev
|
|
- dnsmasq-base
|
|
- dnsmasq-utils
|