blob: e518a612618fcbab6a56fa44c860fff296a7735b [file] [log] [blame]
Petr Michalece9a6c2a2017-03-05 20:14:34 +01001
2keystone:
3# Server state
4 server:
5 enabled: true
6 version: liberty
7 service_name: apache2
8 service_token: RANDOMSTRINGTOKEN
9 service_tenant: service
10 admin_tenant: admin
11 admin_name: admin
12 admin_password: passw0rd
13 admin_email: root@localhost
14 bind:
15 address: 0.0.0.0
16 private_address: 127.0.0.1
17 private_port: 35357
18 public_address: 127.0.0.1
19 public_port: 5000
20 region: RegionOne
21 database:
22 engine: mysql
23 host: localhost
24 name: keystone
25 password: passw0rd
26 user: keystone
27 tokens:
28 engine: cache
29 expiration: 86400
30 location: /etc/keystone/fernet-keys/
31 notification: false
32 notification_format: cadf
33 #message_queue:
34 #engine: rabbitmq
35 #host: 127.0.0.1
36 #port: 5672
37 #user: openstack
38 #password: password
39 #virtual_host: '/openstack'
40 #ha_queues: true
41# Client state
42 client:
43 enabled: false
44 server:
45 identity:
46 admin:
47 host: localhost
48 port: 35357
49 token: RANDOMSTRINGTOKEN
50 roles:
51 - admin
52 - Member
53 project:
54 service:
55 description: "OpenStack Service tenant"
56 admin:
57 description: "OpenStack Admin tenant"
58 user:
59 admin:
60 is_admin: true
61 password: passw0rd
62 email: admin@localhost
63 service:
64 keystone3:
65 type: identity
66 description: OpenStack Identity Service v3
67 endpoints:
68 - region: RegionOne
69 public_address: keystone
70 public_protocol: http
71 public_port: 5000
72 public_path: '/v3'
73 internal_address: keystone
74 internal_port: 5000
75 internal_path: '/v3'
76 admin_address: keystone
77 admin_port: 35357
78 admin_path: '/v3'
79 keystone:
80 type: identity
81 description: OpenStack Identity Service
82 endpoints:
83 - region: RegionOne
84 public_address: keystone
85 public_protocol: http
86 public_port: 5000
87 public_path: '/v2.0'
88 internal_address: keystone
89 internal_port: 5000
90 internal_path: '/v2.0'
91 admin_address: keystone
92 admin_port: 35357
93 admin_path: '/v2.0'
94 #keystone3:
95 #name: keystone3
96 #type: identity
97 #description: OpenStack Identity Service v3
98 #endpoints:
99 #- region: RegionTwo
100 #public_address: keystone
101 #public_protocol: http
102 #public_port: 5000
103 #public_path: '/v3'
104 #internal_address: keystone
105 #internal_port: 5000
106 #internal_path: '/v3'
107 #admin_address: keystone
108 #admin_port: 35357
109 #admin_path: '/v3'
110 #keystone:
111 #name: keystone
112 #type: identity
113 #description: OpenStack Identity Service
114 #endpoints:
115 #- region: RegionTwo
116 #public_address: keystone
117 #public_protocol: http
118 #public_port: 5000
119 #public_path: '/v2.0'
120 #internal_address: keystone
121 #internal_port: 5000
122 #internal_path: '/v2.0'
123 #admin_address: keystone
124 #admin_port: 35357
125 #admin_path: '/v2.0'
126# CI related dependencies
127apache:
128 server:
129 enabled: true
130 default_mpm: event
131 mpm:
132 prefork:
133 enabled: true
134 servers:
135 start: 5
136 spare:
137 min: 2
138 max: 10
139 max_requests: 0
140 max_clients: 20
141 limit: 20
142 site:
143 keystone:
144 enabled: true
145 type: keystone
146 name: wsgi
147 host:
148 name: localhost
149 pkgs:
150 - apache2
151 modules:
152 - wsgi
153mysql:
154 client:
155 enabled: true
156 version: '5.7'
157 admin:
158 host: localhost
159 port: 3306
160 user: admin
161 password: password
162 encoding: utf8
163 server:
164 enabled: true
165 version: "5.7"
166 force_encoding: utf8
167 bind:
168 address: 0.0.0.0
169 port: 3306
170 protocol: tcp
171 database:
172 keystone:
173 encoding: utf8
174 users:
175 - host: '%'
176 name: keystone
177 password: passw0rd
178 rights: all
179 - host: 127.0.0.1
180 name: keystone
181 password: passw0rd
182 rights: all