diff options
author | Alex Schultz <aschultz@redhat.com> | 2016-10-07 14:49:19 -0600 |
---|---|---|
committer | Alex Schultz <aschultz@redhat.com> | 2016-10-07 14:49:19 -0600 |
commit | 36f7d8edf2875024f8f921bcd125d1209d1b4630 (patch) | |
tree | 65f3c5000dba838cc0166859fb8a7479a379b356 | |
parent | 41dac693cfcdf2ece25d3257b0d82110a1cb3162 (diff) |
Fix eqlx chap password
The hiera key generated by THT is eqlx_chap_password and not
eql_san_password.
https://github.com/openstack/tripleo-heat-templates/blob/master/puppet/extraconfig/pre_deploy/controller/cinder-eqlx.yaml#L63
Change-Id: Ic062d9060f0ce437336e2bd6aaca3887fc33c8cf
Closes-Bug: #1631527
-rw-r--r-- | manifests/profile/base/cinder/volume/eqlx.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/profile/base/cinder/volume/eqlx.pp b/manifests/profile/base/cinder/volume/eqlx.pp index 2399459..fe24f4b 100644 --- a/manifests/profile/base/cinder/volume/eqlx.pp +++ b/manifests/profile/base/cinder/volume/eqlx.pp @@ -43,7 +43,7 @@ class tripleo::profile::base::cinder::volume::eqlx ( eqlx_pool => hiera('cinder::backend::eqlx::eqlx_pool', undef), eqlx_use_chap => hiera('cinder::backend::eqlx::eqlx_use_chap', undef), eqlx_chap_login => hiera('cinder::backend::eqlx::eqlx_chap_login', undef), - eqlx_chap_password => hiera('cinder::backend::eqlx::eqlx_san_password', undef), + eqlx_chap_password => hiera('cinder::backend::eqlx::eqlx_chap_password', undef), } } |