blob: b425091a582a9f7b13610a8ea78b5d9f24dec9da [file] [log] [blame]
Jakub Pavlik874d9d32016-01-25 22:19:15 +01001keystone:
Petr Michalece9a6c2a2017-03-05 20:14:34 +01002# Server state
Jakub Pavlik874d9d32016-01-25 22:19:15 +01003 server:
4 enabled: true
5 version: liberty
Petr Michalece9a6c2a2017-03-05 20:14:34 +01006 service_token: RANDOMSTRINGTOKEN
Jakub Pavlik874d9d32016-01-25 22:19:15 +01007 service_tenant: service
8 admin_tenant: admin
9 admin_name: admin
Petr Michalece9a6c2a2017-03-05 20:14:34 +010010 admin_password: passw0rd
Jakub Pavlik874d9d32016-01-25 22:19:15 +010011 admin_email: root@localhost
12 bind:
13 address: 0.0.0.0
14 private_address: 127.0.0.1
15 private_port: 35357
16 public_address: 127.0.0.1
17 public_port: 5000
18 region: RegionOne
19 database:
20 engine: mysql
Petr Michalece9a6c2a2017-03-05 20:14:34 +010021 host: localhost
22 name: keystone
23 password: passw0rd
24 user: keystone
Jakub Pavlik874d9d32016-01-25 22:19:15 +010025 tokens:
26 engine: cache
27 expiration: 86400
28 location: /etc/keystone/fernet-keys/
Oleksandr Bryndziifae616c2019-02-26 15:38:54 +020029 allow_expired_window: 86400
Petr Michalece9a6c2a2017-03-05 20:14:34 +010030 notification: false
31 notification_format: cadf
vgusev779727c2018-02-16 18:10:54 +040032 logging:
33 log_appender: false
34 log_handlers:
35 watchedfile:
36 enabled: true
37 fluentd:
38 enabled: false
39 ossyslog:
40 enabled: false
Dmitry Ukov70256222017-11-20 19:26:38 +040041 extra_config:
42 federation:
43 cache_group_membership_in_db: true
Petr Michalece9a6c2a2017-03-05 20:14:34 +010044 #message_queue:
45 #engine: rabbitmq
46 #host: 127.0.0.1
47 #port: 5672
48 #user: openstack
49 #password: password
50 #virtual_host: '/openstack'
51 #ha_queues: true
52# Client state
53 client:
54 enabled: false
55 server:
56 identity:
57 admin:
58 host: localhost
59 port: 35357
60 token: RANDOMSTRINGTOKEN
61 roles:
62 - admin
63 - Member
64 project:
65 service:
66 description: "OpenStack Service tenant"
67 admin:
68 description: "OpenStack Admin tenant"
69 user:
70 admin:
71 is_admin: true
72 password: passw0rd
73 email: admin@localhost
74 service:
75 keystone3:
76 type: identity
77 description: OpenStack Identity Service v3
78 endpoints:
79 - region: RegionOne
80 public_address: keystone
81 public_protocol: http
82 public_port: 5000
83 public_path: '/v3'
84 internal_address: keystone
85 internal_port: 5000
86 internal_path: '/v3'
87 admin_address: keystone
88 admin_port: 35357
89 admin_path: '/v3'
90 keystone:
91 type: identity
92 description: OpenStack Identity Service
93 endpoints:
94 - region: RegionOne
95 public_address: keystone
96 public_protocol: http
97 public_port: 5000
98 public_path: '/v2.0'
99 internal_address: keystone
100 internal_port: 5000
101 internal_path: '/v2.0'
102 admin_address: keystone
103 admin_port: 35357
104 admin_path: '/v2.0'
105 # TODO: enable once salt keystone module/states are fixed
106 #keystoneR2:
107 #service: keystone
108 #type: identity
109 #description: OpenStack Identity Service
110 #endpoints:
111 #- region: RegionTwo
112 #public_address: keystone
113 #public_protocol: http
114 #public_port: 5000
115 #public_path: '/v2.0'
116 #internal_address: keystone
117 #internal_port: 5000
118 #internal_path: '/v2.0'
119 #admin_address: keystone
120 #admin_port: 35357
121 #admin_path: '/v2.0'
122# CI related dependencies
123mysql:
124 client:
125 enabled: true
126 version: '5.7'
127 admin:
128 host: localhost
129 port: 3306
130 user: admin
131 password: password
132 encoding: utf8
133 server:
134 enabled: true
135 version: "5.7"
136 force_encoding: utf8
137 bind:
138 address: 0.0.0.0
139 port: 3306
140 protocol: tcp
141 database:
142 keystone:
143 encoding: utf8
144 users:
145 - host: '%'
146 name: keystone
147 password: passw0rd
148 rights: all
149 - host: 127.0.0.1
150 name: keystone
151 password: passw0rd
152 rights: all