aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src/test/resources/resource-examples/multipleModules/pxmc_mmn_volume.yaml
diff options
context:
space:
mode:
authorBenjamin, Max (mb388a) <mb388a@us.att.com>2018-07-30 15:56:09 -0400
committerBenjamin, Max (mb388a) <mb388a@us.att.com>2018-07-31 11:09:25 -0400
commit5a6a6de6f1a26a1897e4917a0df613e25a24eb70 (patch)
tree59a968f27b4b603aacc9d5e7b51fb598aeec5321 /asdc-controller/src/test/resources/resource-examples/multipleModules/pxmc_mmn_volume.yaml
parentb6dc38501f3b746426b42d9de4cc883d894149e8 (diff)
Containerization feature of SO
Change-Id: I95381232eeefcd247a66a5cec370a8ce1c288e18 Issue-ID: SO-670 Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'asdc-controller/src/test/resources/resource-examples/multipleModules/pxmc_mmn_volume.yaml')
-rw-r--r--asdc-controller/src/test/resources/resource-examples/multipleModules/pxmc_mmn_volume.yaml86
1 files changed, 86 insertions, 0 deletions
diff --git a/asdc-controller/src/test/resources/resource-examples/multipleModules/pxmc_mmn_volume.yaml b/asdc-controller/src/test/resources/resource-examples/multipleModules/pxmc_mmn_volume.yaml
new file mode 100644
index 0000000000..debb8a96db
--- /dev/null
+++ b/asdc-controller/src/test/resources/resource-examples/multipleModules/pxmc_mmn_volume.yaml
@@ -0,0 +1,86 @@
+heat_template_version: 2015-04-30
+
+description: HOT creates MSP MMN Cinder Volumes under MobiSupport Tenant
+
+parameters:
+ mmn_volume_name_1:
+ type: string
+ label: Mobisupport MSP MMN Cinder Volume names
+ description: Mobisupport MSP MMN Cinder Volume names
+
+ mmn_volume_name_2:
+ type: string
+ label: Mobisupport MSP MMN Cinder Volume names
+ description: Mobisupport MSP MMN Cinder Volume names
+
+ mmn_volume_name_3:
+ type: string
+ label: Mobisupport MSP MMN Cinder Volume names
+ description: Mobisupport MSP MMN Cinder Volume names
+
+ mmn_volume_name_4:
+ type: string
+ label: Mobisupport MSP MMN Cinder Volume names
+ description: Mobisupport MSP MMN Cinder Volume names
+
+ mmn_volume_size_1:
+ type: number
+ label: Mobisupport MSP MMN Cinder Volume sizes
+ description: Mobisupport MSP MMN Cinder Volume sizes
+
+ mmn_volume_size_2:
+ type: number
+ label: Mobisupport MSP MMN Cinder Volume sizes
+ description: Mobisupport MSP MMN Cinder Volume sizes
+
+ mmn_volume_size_3:
+ type: number
+ label: Mobisupport MSP MMN Cinder Volume sizes
+ description: Mobisupport MSP MMN Cinder Volume sizes
+
+ mmn_volume_size_4:
+ type: number
+ label: Mobisupport MSP MMN Cinder Volume sizes
+ description: Mobisupport MSP MMN Cinder Volume sizes
+
+resources:
+ mmn_data_volume_1:
+ type: OS::Cinder::Volume
+ properties:
+ name: {get_param: mmn_volume_name_1}
+ size: {get_param: mmn_volume_size_1}
+
+ mmn_arch_volume_2:
+ type: OS::Cinder::Volume
+ properties:
+ name: {get_param: mmn_volume_name_2}
+ size: {get_param: mmn_volume_size_2}
+
+ mmn_backup_volume_3:
+ type: OS::Cinder::Volume
+ properties:
+ name: {get_param: mmn_volume_name_3}
+ size: {get_param: mmn_volume_size_3}
+
+ mmn_misc_volume_4:
+ type: OS::Cinder::Volume
+ properties:
+ name: {get_param: mmn_volume_name_4}
+ size: {get_param: mmn_volume_size_4}
+
+outputs:
+ mmn_data_volume_id_1:
+ description: msp mmn data volume 1
+ value: {get_resource: mmn_data_volume_1}
+
+ mmn_arch_volume_id_2:
+ description: msp mn arch volume 2
+ value: {get_resource: mmn_arch_volume_2}
+
+ mmn_backup_volume_id_3:
+ description: msp mn backup volume 3
+ value: {get_resource: mmn_backup_volume_3}
+
+ mmn_misc_volume_id_4:
+ description: msp mn volume 4
+ value: {get_resource: mmn_misc_volume_4}