diff options
author | Sofer Athlan-Guyot <chem@sathlan.org> | 2016-08-24 14:25:49 +0200 |
---|---|---|
committer | Sofer Athlan-Guyot <chem@sathlan.org> | 2016-08-24 14:25:49 +0200 |
commit | 5c1b9864e36ab259035e614bca6794a7c00b081c (patch) | |
tree | c0de228467b08118ff50d2dc250bf76726b7b86c /puppet | |
parent | 95949a297574ee7e823fbeb4d8e7420432dcabe1 (diff) |
Fix Flavor get_param for Block Storage.
The get_param of the flavor was not pointing to the right parameter,
leading to an empty flavor for the block storage and a failure during
validation.
Change-Id: Id9a3d5756be956cedf060443533b84fcc66e721c
Closes-Bug: 1616453
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/cinder-storage.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/cinder-storage.yaml b/puppet/cinder-storage.yaml index ff2c5d1c..ef3f08ff 100644 --- a/puppet/cinder-storage.yaml +++ b/puppet/cinder-storage.yaml @@ -106,7 +106,7 @@ resources: properties: image: {get_param: BlockStorageImage} - flavor: {get_param: Flavor} + flavor: {get_param: OvercloudBlockStorageFlavor} key_name: {get_param: KeyName} networks: - network: ctlplane |