Change manila identity to authtoken

https://review.openstack.org/#/c/351792 changed the manila puppet
module authentication to manila::keystone::authtoken.

Change-Id: I58e1df8a463b9ab9af16f9d01e479aa4f044b929
This commit is contained in:
Ivan Chavero 2016-08-29 16:13:13 -06:00 committed by Javier Pena
parent e97a1f18ef
commit 34db078220
1 changed files with 5 additions and 4 deletions

View File

@ -12,12 +12,13 @@ class packstack::manila ()
# TO-DO(mmagr): Add IPv6 support when hostnames are used
}
class { '::manila::keystone::authtoken':
password => hiera('CONFIG_MANILA_KS_PW'),
auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
}
class { '::manila::api':
bind_host => $bind_host,
keystone_password => hiera('CONFIG_MANILA_KS_PW'),
keystone_tenant => 'services',
keystone_user => 'manila',
keystone_auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
}
class { '::manila::scheduler':