blob: f17cfe95f52b47f53d50dc29f8ea658723b6f53e [file] [log] [blame]
Filip Pytloun943d6882015-10-06 16:28:32 +02001applications:
2- keystone
Ales Komarekc65d9602015-12-18 21:57:58 +01003classes:
4- service.keystone.support
Filip Pytloun943d6882015-10-06 16:28:32 +02005parameters:
Dmitry Kalashnik494a17d2017-12-06 16:55:55 +04006 _param:
7 openstack_log_appender: false
8 openstack_fluentd_handler_enabled: false
Vasyl Saienko07e06432018-01-24 19:47:58 +02009 keystone_service_protocol: http
Filip Pytloun943d6882015-10-06 16:28:32 +020010 keystone:
11 server:
12 enabled: true
13 version: ${_param:keystone_version}
14 service_token: ${_param:keystone_service_token}
15 service_tenant: service
16 admin_tenant: admin
17 admin_name: admin
18 admin_password: ${_param:keystone_admin_password}
19 admin_email: root@localhost
20 bind:
21 address: 0.0.0.0
22 private_address: ${_param:keystone_service_host}
23 private_port: 35357
Vasyl Saienko07e06432018-01-24 19:47:58 +020024 private_protocol: ${_param:keystone_service_protocol}
Filip Pytloun943d6882015-10-06 16:28:32 +020025 public_address: ${_param:keystone_service_host}
26 public_port: 5000
27 region: RegionOne
28 database:
29 engine: mysql
30 host: 'localhost'
31 name: 'keystone'
32 password: '${_param:mysql_keystone_password}'
33 user: 'keystone'
34 tokens:
35 engine: cache
Jakub Pavlik6a6a6212016-01-31 15:20:24 +010036 expiration: 43200
Filip Pytloun943d6882015-10-06 16:28:32 +020037 location: /etc/keystone/fernet-keys/
Andrey Shestakovd2563442017-06-15 17:08:46 +030038 credential:
39 location: /etc/keystone/credential-keys/
Dmitry Kalashnik494a17d2017-12-06 16:55:55 +040040 logging:
41 log_appender: ${_param:openstack_log_appender}
42 log_handlers:
43 watchedfile:
44 enabled: true
45 fluentd:
46 enabled: ${_param:openstack_fluentd_handler_enabled}
Jakub Pavlik72e31d62016-04-08 16:26:57 +020047 message_queue:
48 engine: rabbitmq
49 host: ${_param:single_address}
50 port: 5672
51 user: openstack
52 password: ${_param:rabbitmq_openstack_password}
53 virtual_host: '/openstack'
54 ha_queues: true
Filip Pytloun943d6882015-10-06 16:28:32 +020055 cache:
56 engine: memcached
Alexander Noskov78b81e02016-12-05 16:20:50 +040057 members:
Filip Pytloun943d6882015-10-06 16:28:32 +020058 - host: localhost
Alexander Noskov78b81e02016-12-05 16:20:50 +040059 port: 11211