aboutsummaryrefslogtreecommitdiffstats
path: root/robot/assets/asdc/base_vvg
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-05-09 16:49:40 -0400
committerDR695H <dr695h@att.com>2019-05-09 16:50:28 -0400
commit0772b9ce9d9fa86e5805aba781388671369b9043 (patch)
tree0a57ee37e1dca1a0d452a9063b93adcb305083f0 /robot/assets/asdc/base_vvg
parent910097ed0b1f7922715bfead98d3be6809fe2479 (diff)
remove items that are in demo now
starting in beijing the heat templates are no longer in the testsuite repo Change-Id: If1e6e888508fca5ca5ab8d876a4eb633407e0498 Issue-ID: TEST-148 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robot/assets/asdc/base_vvg')
-rw-r--r--robot/assets/asdc/base_vvg/MANIFEST.json17
-rw-r--r--robot/assets/asdc/base_vvg/base_vvg.env3
-rw-r--r--robot/assets/asdc/base_vvg/base_vvg.yaml22
3 files changed, 0 insertions, 42 deletions
diff --git a/robot/assets/asdc/base_vvg/MANIFEST.json b/robot/assets/asdc/base_vvg/MANIFEST.json
deleted file mode 100644
index 67312f23..00000000
--- a/robot/assets/asdc/base_vvg/MANIFEST.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "name": "volumeGroup.yaml",
- "description": "robot ete manifest",
- "data": [
- {
- "file": "base_vvg.yaml",
- "type": "HEAT",
- "isBase": "true",
- "data": [
- {
- "file": "base_vvg.env",
- "type": "HEAT_ENV"
- }
- ]
- }
- ]
-} \ No newline at end of file
diff --git a/robot/assets/asdc/base_vvg/base_vvg.env b/robot/assets/asdc/base_vvg/base_vvg.env
deleted file mode 100644
index 2b4e72b8..00000000
--- a/robot/assets/asdc/base_vvg/base_vvg.env
+++ /dev/null
@@ -1,3 +0,0 @@
-parameters:
- volume_size: 100
- nova_instance: 1234456 \ No newline at end of file
diff --git a/robot/assets/asdc/base_vvg/base_vvg.yaml b/robot/assets/asdc/base_vvg/base_vvg.yaml
deleted file mode 100644
index c20d4e48..00000000
--- a/robot/assets/asdc/base_vvg/base_vvg.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
-heat_template_version: 2013-05-23
-description: create a Nova instance, a Cinder volume and attach the volume to the instance.
-
-parameters:
- nova_instance:
- type: string
- label: Instance name or ID
- description: ID of the vm to use for the disk to be attached too
- volume_size:
- type: number
- label: GB
- description: Size of the volume to be created.
-resources:
- cinder_volume:
- type: OS::Cinder::Volume
- properties:
- size: { get_param: volume_size }
- volume_attachment:
- type: OS::Cinder::VolumeAttachment
- properties:
- volume_id: { get_resource: cinder_volume }
- instance_uuid: { get_param: nova_instance } \ No newline at end of file