diff options
author | 2016-11-22 21:08:11 -0800 | |
---|---|---|
committer | 2016-11-22 21:08:11 -0800 | |
commit | 18192fce33eef216427965ab09d4bf30a2f70353 (patch) | |
tree | 7862fff1b90a1a809af98345e8cecdd1af31ae5e | |
parent | 4a8fadcf87099ac764974133912ef4894284cbe3 (diff) |
Replace image attribute with (verified) VNFImage attribute.
JIRA: MODELS-23
A separate test will be created to cover these two options.
Change-Id: Idf476707bc9f42d04ff9f6176e00b65246edc8ce
Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
-rwxr-xr-x | tests/blueprints/tosca-vnfd-hello-world-tacker/blueprint.yaml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/blueprints/tosca-vnfd-hello-world-tacker/blueprint.yaml b/tests/blueprints/tosca-vnfd-hello-world-tacker/blueprint.yaml index c06c864..8e1a64f 100755 --- a/tests/blueprints/tosca-vnfd-hello-world-tacker/blueprint.yaml +++ b/tests/blueprints/tosca-vnfd-hello-world-tacker/blueprint.yaml @@ -9,6 +9,10 @@ topology_template: node_templates: VDU1: type: tosca.nodes.nfv.VDU.Tacker + artifacts: + VNFImage: + type: tosca.artifacts.Deployment.Image.VM + file: http://artifacts.opnfv.org/models/images/xenial-server-cloudimg-amd64-disk1.img capabilities: nfv_compute: properties: @@ -16,7 +20,8 @@ topology_template: mem_size: 1024 MB disk_size: 4 GB properties: - image: models-xenial-server +# commented out to test the VNFImage attribute above. These options will be covered in separate tests. +# image: models-xenial-server availability_zone: nova mgmt_driver: noop user_data_format: RAW |