anvil/conf/components/keystone.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

55 lines
1.3 KiB
YAML

# Settings for component keystone
---
# Where we download this from...
get_from: "git://github.com/openstack/keystone.git?branch=master"
# Where is the keystone auth host at?
auth_host: "$(auto:ip)"
auth_port: 35357
auth_proto: http
# Where is the keystone service host at?
service_host: "$(auto:ip)"
service_port: 5000
service_proto: http
# Test exclusions...
#
# TODO(harlowja) these should probably be bugs...
exclude_tests:
# These 2 seem to require swift, not always installed...
- test_swift_auth_middleware
- test_s3_token_middleware
# Aren't always installing memcache...
- test_backend_memcache
- test_nomemcache
# Aren't always installing ldap...
- test_backend_ldap
# Needed when running to setup the right roles/endpoints...
glance:
api_port: "$(glance:api_port)"
protocol: "$(glance:protocol)"
reg_port: "$(glance:reg_port)"
nova:
api_host: "$(nova:api_host)"
api_port: "$(nova:api_port)"
s3_host: "$(nova:s3_host)"
s3_port: "$(nova:s3_port)"
ec2_host: "$(nova:ec2_host)"
ec2_port: "$(nova:ec2_port)"
ec2_admin_host: "$(nova:ec2_admin_host)"
ec2_admin_port: "$(nova:ec2_admin_port)"
protocol: "$(nova:protocol)"
neutron:
api_host: "$(neutron:api_host)"
api_port: "$(neutron:api_port)"
cinder:
api_host: "$(cinder:api_host)"
api_port: "$(cinder:api_port)"
...