aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/subinterface/vlantagging/pattern5/complexVFCMultiLevelNestedScenario/in/nested_pattern5_levelTwo.yml
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/subinterface/vlantagging/pattern5/complexVFCMultiLevelNestedScenario/in/nested_pattern5_levelTwo.yml')
-rw-r--r--openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/subinterface/vlantagging/pattern5/complexVFCMultiLevelNestedScenario/in/nested_pattern5_levelTwo.yml72
1 files changed, 72 insertions, 0 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/subinterface/vlantagging/pattern5/complexVFCMultiLevelNestedScenario/in/nested_pattern5_levelTwo.yml b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/subinterface/vlantagging/pattern5/complexVFCMultiLevelNestedScenario/in/nested_pattern5_levelTwo.yml
new file mode 100644
index 0000000000..e66b5d00f9
--- /dev/null
+++ b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/subinterface/vlantagging/pattern5/complexVFCMultiLevelNestedScenario/in/nested_pattern5_levelTwo.yml
@@ -0,0 +1,72 @@
+heat_template_version: 2013-05-23
+
+description: nested1
+
+parameters:
+ security_group_name:
+ type: comma_delimited_list
+ description: CMAUI1, CMAUI2 server names
+ availability_zone_0:
+ type: string
+ label: availabilityzone name
+ description: availabilityzone name
+ sub_inf_net:
+ type: string
+ description: sub interface network
+ port_net:
+ type: string
+ description: port network
+ pd_server_1b_names:
+ type: comma_delimited_list
+ description: PD server names
+ pd_server_1b_image:
+ type: string
+ description: PD Image server
+ ps_server_1b_names:
+ type: comma_delimited_list
+ description: Ps server names
+ ps_server_1b_image:
+ type: string
+ description: Ps Image server
+ pd_server_1b_flavor:
+ type: string
+ description: Flavor for PD server
+ ps_server_1b_flavor:
+ type: string
+ description: Flavor for PS server
+ pd_server_1b_ips:
+ type: string
+ ps_server_1b_ips:
+ type: string
+ pd_server_2b_ips:
+ type: string
+ ps_server_2b_ips:
+ type: string
+
+resources:
+ pd_server_1b_port_1:
+ type: OS::Neutron::Port
+ properties:
+ network: {get_param: port_net}
+ fixed_ips: [{"ip_address": {get_param: [pd_server_1b_ips, 0]}}]
+ replacement_policy: AUTO
+
+ server_1b_pd_1:
+ type: OS::Nova::Server
+ properties:
+ name: { get_param: [pd_server_1b_names, 1]}
+ image: { get_param: pd_server_1b_image }
+ availability_zone: { get_param: availability_zone_0 }
+ flavor: { get_param: pd_server_1b_flavor }
+ networks:
+ - port: { get_resource: pd_server_1b_port_1 }
+
+ test_resourceGroup_1:
+ type: OS::Heat::ResourceGroup
+ properties:
+ count: 9
+ resource_def:
+ type: nested_vlan.yml
+ properties:
+ parent_interface: { get_resource: pd_server_1b_port_1}
+ net1: { get_param: sub_inf_net} \ No newline at end of file