aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base
diff options
context:
space:
mode:
authorGiulio Fidente <gfidente@redhat.com>2016-07-01 19:38:54 +0200
committerGiulio Fidente <gfidente@redhat.com>2016-07-01 19:38:54 +0200
commit05a2b8820111ba05c3b5e1fe0d6df0c7162a1fc8 (patch)
tree25da72e1b96bb84390c2973064f98c1b6beb7545 /manifests/profile/base
parent389e7b42c0c1d9e81de928c6cc6763c294a9db6b (diff)
Replace reference to cinder:: parameter with nova:: parameter
Changes a reference to a cinder:: parameter into the nova compute class to a nova:: parameter, which makes sure we're not trying to access "out of bound" parameters. Change-Id: I871ef420700e6d0ee5c1e444e019d58b3a9a45a6
Diffstat (limited to 'manifests/profile/base')
-rw-r--r--manifests/profile/base/nova/compute/libvirt.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/profile/base/nova/compute/libvirt.pp b/manifests/profile/base/nova/compute/libvirt.pp
index 74af7fc..5b6f895 100644
--- a/manifests/profile/base/nova/compute/libvirt.pp
+++ b/manifests/profile/base/nova/compute/libvirt.pp
@@ -35,7 +35,7 @@ class tripleo::profile::base::nova::compute::libvirt (
$rbd_persistent_storage = hiera('rbd_persistent_storage', false)
if $rbd_ephemeral_storage or $rbd_persistent_storage {
$client_keys = hiera('ceph::profile::params::client_keys')
- $client_user = join(['client.', hiera('tripleo::profile::base::cinder::volume::rbd::cinder_rbd_user_name')])
+ $client_user = join(['client.', hiera('nova::compute::rbd::libvirt_rbd_user')])
class { '::nova::compute::rbd':
libvirt_rbd_secret_key => $client_keys[$client_user]['secret'],
}