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