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