the admin_password is now the same as the admin_token
Due to https://github.com/openstack/keystone/commit d6b016dd91c743a2f454a3b4f9d055510c2215ae Calling keystone_manage bootstrap requires the admin password. puppet-keystone class keystone calls bootstrap with the argument `--bootstrap-password ${admin_token}`. This resets the admin user password from `$admin_password` to `$admin_token`. The fix here is to make sure admin_token and admin_password are the same value. Change-Id: Iffe55fb8e48485356a3cb058fbcff0c2c2d48bd2
This commit is contained in:
parent
c7ad920283
commit
a61a63e9de
@ -46,7 +46,7 @@ class openstack_integration::keystone (
|
||||
class { '::keystone':
|
||||
debug => true,
|
||||
database_connection => 'mysql+pymysql://keystone:keystone@127.0.0.1/keystone',
|
||||
admin_token => 'admin_token',
|
||||
admin_token => 'a_big_secret',
|
||||
enabled => true,
|
||||
service_name => 'httpd',
|
||||
default_domain => $default_domain,
|
||||
|
Loading…
x
Reference in New Issue
Block a user