anvil/conf/components/keystone.yaml
Nikita Savin 7328ff55e3 Put patches in proper dirs, cleanup components config
Change-Id: I8be53fcc926f5b0ab425b31e74fefe2c247acbec
2013-06-30 12:35:27 -07: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)"
quantum:
api_host: "$(quantum:api_host)"
api_port: "$(quantum:api_port)"
cinder:
api_host: "$(cinder:api_host)"
api_port: "$(cinder:api_port)"
...