blob: d52812d64173c24f0551fbedb6cb4117fa373d21 [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/
Petr Michalece9a6c2a2017-03-05 20:14:34 +010029 notification: false
30 notification_format: cadf
vgusev779727c2018-02-16 18:10:54 +040031 logging:
32 log_appender: false
33 log_handlers:
34 watchedfile:
35 enabled: true
36 fluentd:
37 enabled: false
38 ossyslog:
39 enabled: false
Dmitry Ukov70256222017-11-20 19:26:38 +040040 extra_config:
41 federation:
42 cache_group_membership_in_db: true
Petr Michalece9a6c2a2017-03-05 20:14:34 +010043 #message_queue:
44 #engine: rabbitmq
45 #host: 127.0.0.1
46 #port: 5672
47 #user: openstack
48 #password: password
49 #virtual_host: '/openstack'
50 #ha_queues: true
51# Client state
52 client:
53 enabled: false
54 server:
55 identity:
56 admin:
57 host: localhost
58 port: 35357
59 token: RANDOMSTRINGTOKEN
60 roles:
61 - admin
62 - Member
63 project:
64 service:
65 description: "OpenStack Service tenant"
66 admin:
67 description: "OpenStack Admin tenant"
68 user:
69 admin:
70 is_admin: true
71 password: passw0rd
72 email: admin@localhost
73 service:
74 keystone3:
75 type: identity
76 description: OpenStack Identity Service v3
77 endpoints:
78 - region: RegionOne
79 public_address: keystone
80 public_protocol: http
81 public_port: 5000
82 public_path: '/v3'
83 internal_address: keystone
84 internal_port: 5000
85 internal_path: '/v3'
86 admin_address: keystone
87 admin_port: 35357
88 admin_path: '/v3'
89 keystone:
90 type: identity
91 description: OpenStack Identity Service
92 endpoints:
93 - region: RegionOne
94 public_address: keystone
95 public_protocol: http
96 public_port: 5000
97 public_path: '/v2.0'
98 internal_address: keystone
99 internal_port: 5000
100 internal_path: '/v2.0'
101 admin_address: keystone
102 admin_port: 35357
103 admin_path: '/v2.0'
104 # TODO: enable once salt keystone module/states are fixed
105 #keystoneR2:
106 #service: keystone
107 #type: identity
108 #description: OpenStack Identity Service
109 #endpoints:
110 #- region: RegionTwo
111 #public_address: keystone
112 #public_protocol: http
113 #public_port: 5000
114 #public_path: '/v2.0'
115 #internal_address: keystone
116 #internal_port: 5000
117 #internal_path: '/v2.0'
118 #admin_address: keystone
119 #admin_port: 35357
120 #admin_path: '/v2.0'
121# CI related dependencies
122mysql:
123 client:
124 enabled: true
125 version: '5.7'
126 admin:
127 host: localhost
128 port: 3306
129 user: admin
130 password: password
131 encoding: utf8
132 server:
133 enabled: true
134 version: "5.7"
135 force_encoding: utf8
136 bind:
137 address: 0.0.0.0
138 port: 3306
139 protocol: tcp
140 database:
141 keystone:
142 encoding: utf8
143 users:
144 - host: '%'
145 name: keystone
146 password: passw0rd
147 rights: all
148 - host: 127.0.0.1
149 name: keystone
150 password: passw0rd
151 rights: all