diff options
Diffstat (limited to 'tosca2heat')
-rw-r--r-- | tosca2heat/heat-translator/translator/tests/data/hot_output/hot_nfv_sample.yaml | 4 | ||||
-rw-r--r-- | tosca2heat/heat-translator/translator/tests/data/test_tosca_nfv_sample.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tosca2heat/heat-translator/translator/tests/data/hot_output/hot_nfv_sample.yaml b/tosca2heat/heat-translator/translator/tests/data/hot_output/hot_nfv_sample.yaml index d67f022..44647c6 100644 --- a/tosca2heat/heat-translator/translator/tests/data/hot_output/hot_nfv_sample.yaml +++ b/tosca2heat/heat-translator/translator/tests/data/hot_output/hot_nfv_sample.yaml @@ -29,14 +29,14 @@ resources: BlockStorage: type: OS::Cinder::Volume properties: - size: 10 + size: 1 tosca.relationships.attachesto_1: type: OS::Cinder::VolumeAttachment properties: instance_uuid: get_resource: VDU1 - mountpoint: /data + mountpoint: /dev/vdb1 volume_id: get_resource: BlockStorage diff --git a/tosca2heat/heat-translator/translator/tests/data/test_tosca_nfv_sample.yaml b/tosca2heat/heat-translator/translator/tests/data/test_tosca_nfv_sample.yaml index edbbbe5..d953fe7 100644 --- a/tosca2heat/heat-translator/translator/tests/data/test_tosca_nfv_sample.yaml +++ b/tosca2heat/heat-translator/translator/tests/data/test_tosca_nfv_sample.yaml @@ -28,12 +28,12 @@ topology_template: relationship: type: tosca.relationships.AttachesTo properties: - location: /data + location: /dev/vdb1 BlockStorage: type: tosca.nodes.BlockStorage properties: - size: 10 GB + size: 1 GB VDU2: type: tosca.nodes.nfv.VDU |