Jakub Pavlik | 874d9d3 | 2016-01-25 22:19:15 +0100 | [diff] [blame] | 1 | keystone: |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 2 | # Server state |
Jakub Pavlik | 874d9d3 | 2016-01-25 22:19:15 +0100 | [diff] [blame] | 3 | server: |
| 4 | enabled: true |
| 5 | version: liberty |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 6 | service_token: RANDOMSTRINGTOKEN |
Jakub Pavlik | 874d9d3 | 2016-01-25 22:19:15 +0100 | [diff] [blame] | 7 | service_tenant: service |
| 8 | admin_tenant: admin |
| 9 | admin_name: admin |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 10 | admin_password: passw0rd |
Jakub Pavlik | 874d9d3 | 2016-01-25 22:19:15 +0100 | [diff] [blame] | 11 | 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 Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 21 | host: localhost |
| 22 | name: keystone |
| 23 | password: passw0rd |
| 24 | user: keystone |
Jakub Pavlik | 874d9d3 | 2016-01-25 22:19:15 +0100 | [diff] [blame] | 25 | tokens: |
| 26 | engine: cache |
| 27 | expiration: 86400 |
| 28 | location: /etc/keystone/fernet-keys/ |
sgarbuz | 96532ba | 2018-11-16 13:14:57 +0200 | [diff] [blame] | 29 | message_queue: |
| 30 | engine: rabbitmq |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 31 | notification: false |
| 32 | notification_format: cadf |
vgusev | 779727c | 2018-02-16 18:10:54 +0400 | [diff] [blame] | 33 | logging: |
| 34 | log_appender: false |
| 35 | log_handlers: |
| 36 | watchedfile: |
| 37 | enabled: true |
| 38 | fluentd: |
| 39 | enabled: false |
| 40 | ossyslog: |
| 41 | enabled: false |
Dmitry Ukov | 7025622 | 2017-11-20 19:26:38 +0400 | [diff] [blame] | 42 | extra_config: |
| 43 | federation: |
| 44 | cache_group_membership_in_db: true |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 45 | #message_queue: |
| 46 | #engine: rabbitmq |
| 47 | #host: 127.0.0.1 |
| 48 | #port: 5672 |
| 49 | #user: openstack |
| 50 | #password: password |
| 51 | #virtual_host: '/openstack' |
| 52 | #ha_queues: true |
| 53 | # Client state |
| 54 | client: |
| 55 | enabled: false |
| 56 | server: |
| 57 | identity: |
| 58 | admin: |
| 59 | host: localhost |
| 60 | port: 35357 |
| 61 | token: RANDOMSTRINGTOKEN |
| 62 | roles: |
| 63 | - admin |
| 64 | - Member |
| 65 | project: |
| 66 | service: |
| 67 | description: "OpenStack Service tenant" |
| 68 | admin: |
| 69 | description: "OpenStack Admin tenant" |
| 70 | user: |
| 71 | admin: |
| 72 | is_admin: true |
| 73 | password: passw0rd |
| 74 | email: admin@localhost |
| 75 | service: |
| 76 | keystone3: |
| 77 | type: identity |
| 78 | description: OpenStack Identity Service v3 |
| 79 | endpoints: |
| 80 | - region: RegionOne |
| 81 | public_address: keystone |
| 82 | public_protocol: http |
| 83 | public_port: 5000 |
| 84 | public_path: '/v3' |
| 85 | internal_address: keystone |
| 86 | internal_port: 5000 |
| 87 | internal_path: '/v3' |
| 88 | admin_address: keystone |
| 89 | admin_port: 35357 |
| 90 | admin_path: '/v3' |
| 91 | keystone: |
| 92 | type: identity |
| 93 | description: OpenStack Identity Service |
| 94 | endpoints: |
| 95 | - region: RegionOne |
| 96 | public_address: keystone |
| 97 | public_protocol: http |
| 98 | public_port: 5000 |
| 99 | public_path: '/v2.0' |
| 100 | internal_address: keystone |
| 101 | internal_port: 5000 |
| 102 | internal_path: '/v2.0' |
| 103 | admin_address: keystone |
| 104 | admin_port: 35357 |
| 105 | admin_path: '/v2.0' |
| 106 | # TODO: enable once salt keystone module/states are fixed |
| 107 | #keystoneR2: |
| 108 | #service: keystone |
| 109 | #type: identity |
| 110 | #description: OpenStack Identity Service |
| 111 | #endpoints: |
| 112 | #- region: RegionTwo |
| 113 | #public_address: keystone |
| 114 | #public_protocol: http |
| 115 | #public_port: 5000 |
| 116 | #public_path: '/v2.0' |
| 117 | #internal_address: keystone |
| 118 | #internal_port: 5000 |
| 119 | #internal_path: '/v2.0' |
| 120 | #admin_address: keystone |
| 121 | #admin_port: 35357 |
| 122 | #admin_path: '/v2.0' |
| 123 | # CI related dependencies |
| 124 | mysql: |
| 125 | client: |
| 126 | enabled: true |
| 127 | version: '5.7' |
| 128 | admin: |
| 129 | host: localhost |
| 130 | port: 3306 |
| 131 | user: admin |
| 132 | password: password |
| 133 | encoding: utf8 |
| 134 | server: |
| 135 | enabled: true |
| 136 | version: "5.7" |
| 137 | force_encoding: utf8 |
| 138 | bind: |
| 139 | address: 0.0.0.0 |
| 140 | port: 3306 |
| 141 | protocol: tcp |
| 142 | database: |
| 143 | keystone: |
| 144 | encoding: utf8 |
| 145 | users: |
| 146 | - host: '%' |
| 147 | name: keystone |
| 148 | password: passw0rd |
| 149 | rights: all |
| 150 | - host: 127.0.0.1 |
| 151 | name: keystone |
| 152 | password: passw0rd |
| 153 | rights: all |