[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / heattotoscatranslator / overallexample / inputs / cmaui.yml
1 heat_template_version: 2013-05-23
2
3 #################################
4 #
5 #  Changes from MSO 01/26/2016
6 #  Updated per OPENECOMP feedback
7 #
8 #################################
9
10 description: cmaui server template for vMMSC
11
12 parameters:
13   vnf_id:
14     type: string
15     description: Unique ID for this VNF instance
16     default: This_is_ths_MMSC-CMAUI_id
17   cmaui_names:
18     type: comma_delimited_list
19     description: CMAUI1, CMAUI2 server names
20   cmaui_image:
21     type: string
22     description: Image for CMAUI server
23   cmaui_flavor:
24     type: string
25     description: Flavor for CMAUI server
26   cmaui_cinder_volume_size:
27      type: number
28      label: CMAUI Cinder volume size
29      description: the size of the CMAUI Cinder volume
30   availability_zone_0:
31     type: string
32     label: availabilityzone name
33     description: availabilityzone name
34   oam_net_name:
35     type: string
36     description: UID of OAM network
37   oam_network_netmask:
38     type: string
39     label: oam network netmask
40     description: oam network gateway
41   oam_network_gateway:
42     type: string
43     label: oam network gateway
44     description: oam network gateway
45   external_dns:
46     type: string
47     label: dns server
48     description: dns server
49   external_ntp:
50     type: string
51     label: ntp server 
52     description: ntp server
53   security_group_name:
54     type: string
55     label: security group name
56     description: the name of security group
57   timezone:
58     type: string
59     label: timezone
60     description: timezone
61   cmaui_oam_ips:
62     type: comma_delimited_list
63     label: CMAUI oam_net IP addresses
64     description: CMAUI oam_net IP addresses
65   CMAUI_volume_type:
66     type: string
67     label: CMAUI vm volume type
68     description: the name of the target volume backend
69
70 resources:
71   server_cmaui:
72     type: eca_oam.yaml
73     properties:
74       cmaui_name: { get_param: [cmaui_names, 0]}
75       cmaui_image: { get_param: cmaui_image }
76       availability_zone_0: { get_param: availability_zone_0 }
77       flavor: { get_param: cmaui_flavor }
78       networks:
79       - port: { get_resource: cmaui_port_0 }
80       metadata:
81         vnf_id: { get_param: vnf_id }
82       user_data:
83         str_replace:
84           template: |
85             cmaui.mgmt.ip=${cmaui.mgmt.ip}
86             cmaui.mgmt.netmask=${cmaui.mgmt.netmask}
87             cmaui.mgmt.gateway=${cmaui.mgmt.gateway}
88             cmaui.external.dns=${cmaui.external.dns}
89             cmaui.external.ntp=${cmaui.external.ntp}
90             cmaui.node=${cmaui.node}
91             cmaui.timezone=${cmaui.timezone}
92           params:
93             ${cmaui.mgmt.ip}: {get_param: [cmaui_oam_ips, 0]} 
94             ${cmaui.mgmt.netmask}: {get_param: oam_network_netmask}
95             ${cmaui.mgmt.gateway}: {get_param: oam_network_gateway}
96             ${cmaui.external.dns}: {get_param: external_dns}
97             ${cmaui.external.ntp}: {get_param: external_ntp}
98             ${cmaui.node}: {get_param: [cmaui_names, 0]} 
99             ${cmaui.timezone}: {get_param: timezone}
100       user_data_format: RAW 
101
102   cmaui_volume:
103      type: OS::Cinder::Volume
104      properties:
105        size: {get_param: cmaui_cinder_volume_size}
106        volume_type: {get_param: CMAUI_volume_type}
107
108   cmaui_volume_attachment:
109      type: OS::Cinder::VolumeAttachment
110      properties:
111        volume_id: {get_resource: cmaui_volume}
112        instance_uuid: {get_resource: server_cmaui}
113
114   cmaui_port_0:
115     type: OS::Neutron::Port
116     properties:
117       network: { get_param: oam_net_name }
118       fixed_ips: [{"ip_address": {get_param: [cmaui_oam_ips, 0]}}]
119       security_groups: [{get_param: security_group_name}]
120       replacement_policy: AUTO
121
122   server_cmaui1:
123     type: OS::Nova::Server
124     properties:
125       name: { get_param: [cmaui_names, 1]}
126       image: { get_param: cmaui_image }
127       availability_zone: { get_param: availability_zone_0 }
128       flavor: { get_param: cmaui_flavor }
129       networks:
130       - port: { get_resource: cmaui1_port_0 }
131       metadata:
132         vnf_id: { get_param: vnf_id }
133       user_data:
134         str_replace:
135           template: |
136             cmaui.mgmt.ip=${cmaui.mgmt.ip}
137             cmaui.mgmt.netmask=${cmaui.mgmt.netmask}
138             cmaui.mgmt.gateway=${cmaui.mgmt.gateway}
139             cmaui.external.dns=${cmaui.external.dns}
140             cmaui.external.ntp=${cmaui.external.ntp}
141             cmaui.node=${cmaui.node}
142             cmaui.timezone=${cmaui.timezone}
143           params:
144             ${cmaui.mgmt.ip}: {get_param: [cmaui_oam_ips, 1]} 
145             ${cmaui.mgmt.netmask}: {get_param: oam_network_netmask}
146             ${cmaui.mgmt.gateway}: {get_param: oam_network_gateway}
147             ${cmaui.external.dns}: {get_param: external_dns}
148             ${cmaui.external.ntp}: {get_param: external_ntp}
149             ${cmaui.node}: {get_param: [cmaui_names, 1]} 
150             ${cmaui.timezone}: {get_param: timezone}
151       user_data_format: RAW 
152
153   cmaui1_volume:
154      type: OS::Cinder::Volume
155      properties:
156        size: {get_param: cmaui_cinder_volume_size}
157        volume_type: {get_param: CMAUI_volume_type}
158
159   cmaui1_volume_attachment:
160      type: OS::Cinder::VolumeAttachment
161      properties:
162        volume_id: {get_resource: cmaui1_volume}
163        instance_uuid: {get_resource: server_cmaui1}
164
165   cmaui1_port_0:
166     type: OS::Neutron::Port
167     properties:
168       network: { get_param: oam_net_name }
169       fixed_ips: [{"ip_address": {get_param: [cmaui_oam_ips, 1]}}]
170       security_groups: [{get_param: security_group_name}]
171       replacement_policy: AUTO
172
173 outputs:
174   expose_1:
175     description: the pcrf_server
176     value: { get_resource: cmaui_volume }
177   expose_2:
178     description: the pcrf_server
179     value: { get_resource: cmaui1_volume }