Change ironic identity to authtoken

https://review.openstack.org/#/c/346028/14 moved keystone resource
creation to ironic::keystone::authtoken. Adapting packstack to it.

Change-Id: I22cb0b9fdbfa31aa58d5e25c28b44b4a1b95bd48
This commit is contained in:
Ivan Chavero 2016-09-09 15:15:04 -06:00 committed by Javier Pena
parent 81656e43d9
commit 92ea78df62

View File

@ -6,11 +6,13 @@ class packstack::ironic ()
'glance/glance_host': value => hiera('CONFIG_STORAGE_HOST_URL');
}
class { '::ironic::api':
auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
admin_password => hiera('CONFIG_IRONIC_KS_PW'),
class { '::ironic::api::authtoken': {
auth_uri => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
password => hiera('CONFIG_IRONIC_KS_PW'),
}
class { '::ironic::api': }
class { '::ironic::client': }
class { '::ironic::conductor': }