[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / fulltest / catalogInstances / threeComputesSameTypeDiffImageName / in / hot-mog-0108-bs1271.yml
1 heat_template_version: 2013-05-23
2
3 description: heat template that creates MOG stack
4
5 parameters:
6   pd_server_names:
7     type: comma_delimited_list
8     label: PD server names
9     description: name of the PD instance
10   pd_image_name:
11     type: string
12     label: image name
13     description: PD image name
14   diff_image_name:
15     type: string
16     label: image name
17     description: PD image name
18   pd_flavor_name:
19     type: string
20     label: PD flavor name
21     description: flavor name of PD instance
22   availabilityzone_name:
23     type: string
24     label: availabilityzone name
25     description: availabilityzone name
26   oam_net_name:
27     type: string
28     label: oam network name
29     description: name of the oam network
30   dummy_net_name_1:
31     type: string
32     label: csb ineternal cidr
33     description: csb internal cidr
34   packet_internal_network_name:
35     type: string
36     label: packet internal network name
37     description: name of the network
38
39 resources:
40   server_ps_01:
41     type: OS::Nova::Server
42     properties:
43 #      config_drive: "True"
44       name: {get_param: [pd_server_names, 0]}
45       image: {get_param: pd_image_name}
46       flavor: {get_param: pd_flavor_name}
47       availability_zone: {get_param: availabilityzone_name}
48       networks:
49         - port: {get_resource: pd01_port_0}
50       user_data_format:  RAW
51
52   server_ps_02:
53     type: OS::Nova::Server
54     properties:
55 #      config_drive: "True"
56       name: {get_param: [pd_server_names, 1]}
57       image: {get_param: pd_image_name}
58       flavor: {get_param: pd_flavor_name}
59       availability_zone: {get_param: availabilityzone_name}
60       networks:
61         - port: {get_resource: pd01_port_1}
62       user_data_format:  RAW
63
64   server_ps_3:
65     type: OS::Nova::Server
66     properties:
67 #      config_drive: "True"
68       name: {get_param: [pd_server_names, 2]}
69       image: {get_param: diff_image_name}
70       flavor: {get_param: pd_flavor_name}
71       availability_zone: {get_param: availabilityzone_name}
72       networks:
73         - port: {get_resource: pd01_port_2}
74       user_data_format:  RAW
75
76   pd01_port_0:
77     type: OS::Neutron::Port
78     properties:
79       network: {get_resource: packet_internal_network}
80   pd01_port_1:
81     type: OS::Neutron::Port
82     properties:
83       network: {get_resource: packet_internal_network}
84   pd01_port_2:
85     type: OS::Neutron::Port
86     properties:
87       network: {get_resource: packet_internal_network}
88
89   packet_internal_network:
90     type: OS::Neutron::Net
91     properties:
92       name:
93         get_param: packet_internal_network_name
94
95