summaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume')
-rw-r--r--openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/MANIFEST.json16
-rw-r--r--openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/base_mobt.yaml26
-rw-r--r--openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/hot_mobt_volume_attach_nested.yaml28
3 files changed, 70 insertions, 0 deletions
diff --git a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/MANIFEST.json b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/MANIFEST.json
new file mode 100644
index 0000000000..1e2b0c7997
--- /dev/null
+++ b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/MANIFEST.json
@@ -0,0 +1,16 @@
+{
+ "name": "",
+ "description": "",
+ "data": [
+ {
+ "file": "hot_mobt_volume_attach_nested.yaml",
+ "type": "HEAT_VOL",
+ "isBase": "false"
+ },
+ {
+ "file": "base_mobt.yaml",
+ "type": "HEAT",
+ "isBase": "true"
+ }
+ ]
+} \ No newline at end of file
diff --git a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/base_mobt.yaml b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/base_mobt.yaml
new file mode 100644
index 0000000000..c3be156e38
--- /dev/null
+++ b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/base_mobt.yaml
@@ -0,0 +1,26 @@
+heat_template_version: 2014-10-16
+
+description: heat template that creates additional MOBT nodes in stack
+
+parameters:
+ mobt_vol_count:
+ type: number
+ label: MOBT OAM server count
+ description: MOBT OAM server instance count
+ default: 2
+ constraints:
+ - range: { min: 2, max: 2 }
+
+resources:
+ server_volume_attach_group:
+ type: OS::Heat::ResourceGroup
+ properties:
+ count: { get_param: mobt_vol_count }
+ resource_def:
+ type: hot_mobt_volume_attach_nested.yaml
+ properties:
+ mobt_vol_index: "%index%"
+ server_mobt_group_ids: { get_attr: [ server_mobt_group_data, mobt_server_adm_x_id ] }
+ update_policy:
+ batch_create:
+ max_batch_size: 1
diff --git a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/hot_mobt_volume_attach_nested.yaml b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/hot_mobt_volume_attach_nested.yaml
new file mode 100644
index 0000000000..8e6d07f899
--- /dev/null
+++ b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/tree/nested_volume/hot_mobt_volume_attach_nested.yaml
@@ -0,0 +1,28 @@
+heat_template_version: 2014-10-16
+
+description: nested heat template that associtate the cinder volumes to OAM nodes stack
+
+parameters:
+ mobt_volume_ids:
+ type: comma_delimited_list
+ label: MOBT OAM Cinder Volumes
+ description: MOBT OAM Cinder Volumes
+
+ server_mobt_group_ids:
+ type: comma_delimited_list
+ label: MOBT OAM Resource Group
+ description: MOBT OAM Resource Group
+
+ mobt_vol_index:
+ type: number
+ label: ADM volume index
+ description: ADM volume UUID in list
+
+resources:
+ mobt_adm_vol_attachment_x:
+ type: OS::Cinder::VolumeAttachment
+ properties:
+ volume_id: { get_param: [ mobt_volume_ids, get_param: mobt_vol_index ]}
+ mountpoint: /dev/vdb
+ instance_uuid: { get_param: [ server_mobt_group_ids, get_param: mobt_vol_index ]}
+