[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / vol_att / volume_and_attach_one_file / inputfiles / hot_template.yml
1 heat_template_version: 2013-05-23
2
3 #################################
4 #
5 #  Changes from MSO 01/26/2016
6 #  Updated per ECOMP 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   server_cmaui:
70     type: string
71     label: CMAUI server name
72     description: the name of the cmaui server
73
74 resources:
75
76   cmaui_port_0:
77     type: OS::Neutron::Port
78     properties:
79       network: { get_param: oam_net_name }
80       fixed_ips: [{"ip_address": {get_param: [cmaui_oam_ips, 0]}}]
81       security_groups: [{get_param: security_group_name}]
82       replacement_policy: AUTO
83
84   cmaui_volume:
85      type: OS::Cinder::Volume
86      properties:
87        size: {get_param: cmaui_cinder_volume_size}
88        volume_type: {get_param: CMAUI_volume_type}
89
90   cmaui_volume_attachment:
91      type: OS::Cinder::VolumeAttachment
92      properties:
93        volume_id: {get_resource: cmaui_volume}
94        instance_uuid: {get_resource: server_cmaui}
95
96   cmaui_volume_attachment_empty_nova:
97      type: OS::Cinder::VolumeAttachment
98      properties:
99        volume_id: {get_resource: cmaui_volume}
100        instance_uuid: {get_param: server_cmaui}
101
102   server_cmaui:
103     type: OS::Nova::Server
104     properties:
105       name: { get_param: [cmaui_names, 0]}
106       image: { get_param: cmaui_image }
107       availability_zone: { get_param: availability_zone_0 }
108       flavor: { get_param: cmaui_flavor }
109       networks:
110       - port: { get_resource: cmaui_port_0 }
111       metadata:
112         vnf_id: { get_param: vnf_id }
113       user_data:
114         str_replace:
115           template: |
116             cmaui.mgmt.ip=${cmaui.mgmt.ip}
117             cmaui.mgmt.netmask=${cmaui.mgmt.netmask}
118             cmaui.mgmt.gateway=${cmaui.mgmt.gateway}
119             cmaui.external.dns=${cmaui.external.dns}
120             cmaui.external.ntp=${cmaui.external.ntp}
121             cmaui.node=${cmaui.node}
122             cmaui.timezone=${cmaui.timezone}
123           params:
124             ${cmaui.mgmt.ip}: {get_param: [cmaui_oam_ips, 0]}
125             ${cmaui.mgmt.netmask}: {get_param: oam_network_netmask}
126             ${cmaui.mgmt.gateway}: {get_param: oam_network_gateway}
127             ${cmaui.external.dns}: {get_param: external_dns}
128             ${cmaui.external.ntp}: {get_param: external_ntp}
129             ${cmaui.node}: {get_param: [cmaui_names, 0]}
130             ${cmaui.timezone}: {get_param: timezone}
131       user_data_format: RAW