1 heat_template_version: 2013-05-23
3 description: heat template that creates PCRF Cluman stack
8 label: PCRF CM server name
9 description: PCRF CM server name
13 description: PCRF CM image name
16 label: PCRF CM flavor name
17 description: flavor name of PCRF CM instance
18 availabilityzone_name:
20 label: availabilityzone name
21 description: availabilityzone name
24 label: CPS network name
25 description: CPS network name
29 description: CPS network ip
32 label: CPS network mask
33 description: CPS network mask
36 label: OAM network name
37 description: OAM network name
41 description: OAM network ip
44 label: CPS network gateway
45 description: CPS network gateway
48 label: CPS network mask
49 description: CPS network mask
52 label: CPS Cluman Cinder Volume
53 description: CPS Cluman Cinder Volume
56 label: security group name
57 description: the name of security group
61 type: OS::Nova::Server
64 name: { get_param: pcm_server_name }
65 image: { get_param: pcm_image_name }
66 flavor: { get_param: pcm_flavor_name }
67 availability_zone: { get_param: availabilityzone_name }
69 - port: { get_resource: pcm_port_0}
72 volume_id: { get_param: pcm_vol}
76 type: OS::Nova::Server
79 name: { get_param: pcm_server_name }
80 image: { get_param: pcm_image_name }
81 flavor: { get_param: pcm_flavor_name }
82 availability_zone: { get_param: availabilityzone_name }
84 - port: { get_resource: pcm_port_1}
87 volume_id: { get_param: pcm_vol}
91 type: OS::Neutron::Port
93 network: { get_param: cps_net_name }
95 - ip_address: { get_param: cps_net_ip }
96 security_groups: [{ get_param: security_group_name }]
99 type: OS::Neutron::Port
101 network: { get_param: oam_net_name }
103 - ip_address: { get_param: oam_net_ip }
104 security_groups: [{ get_param: security_group_name }]
107 description: the pcm nova service id
108 value: { get_resource: server_pcm_1 }
111 description: the pcm nova service id
112 value: { get_resource: server_pcm_2 }