From 7e93244ce1b4e8aa40dba7c43ace466a02b7f666 Mon Sep 17 00:00:00 2001 From: spisarski Date: Thu, 30 Nov 2017 14:35:53 -0700 Subject: Deactivated test heat template's volume encryption. Removed volume encryption from the test volume heat template as it is no longer operating properly against a Pike pod. Created the ticket SNAPS-245 to address this issue sometime in the future. JIRA: SNAPS-240 Change-Id: I610dbba4ebadd5dfb360a665b7a543be6ef5fb1c Signed-off-by: spisarski --- snaps/openstack/tests/heat/volume_heat_template.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'snaps/openstack/tests/heat/volume_heat_template.yaml') diff --git a/snaps/openstack/tests/heat/volume_heat_template.yaml b/snaps/openstack/tests/heat/volume_heat_template.yaml index 7b6e55a..1200476 100644 --- a/snaps/openstack/tests/heat/volume_heat_template.yaml +++ b/snaps/openstack/tests/heat/volume_heat_template.yaml @@ -36,16 +36,17 @@ resources: properties: name: { get_param: volume_type_name } - encryption_vol_type: - type: OS::Cinder::EncryptedVolumeType - properties: - provider: nova.volume.encryptors.luks.LuksEncryptor - control_location: front-end - volume_type: { get_resource: volume_type } +# encryption_vol_type: +# type: OS::Cinder::EncryptedVolumeType +# properties: +# provider: nova.volume.encryptors.luks.LuksEncryptor +# control_location: front-end +# volume_type: { get_resource: volume_type } volume: type: OS::Cinder::Volume properties: name: { get_param: volume_name } size: 1 - volume_type: { get_resource: encryption_vol_type } +# volume_type: { get_resource: encryption_vol_type } + volume_type: { get_resource: volume_type } -- cgit 1.2.3-korg