aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedSingleCompute/multipleReferencesToSameNestedFilesWithSameComputeType/in/module_7_vson_app.yaml
blob: 0fe22800c524ffab49482ced96c87e832cd97835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
heat_template_version: 2015-04-30
#################################
# Author: Dmitry Orzhehovsky
# Email:  dorzheho@cisco.com
#################################

description: The template deploys vSON VFC of type APP.

parameters:

  vnf_name:
    type: string
    label: VF name
    description: Unique name for this VF instance.

  vnf_id:
    type: string
    label: VF ID
    description: Unique ID for this VF instance.

  vf_module_name:
    type: string
    label: VF module name
    description: Unique name for this VF module instance.

  vf_module_id:
    type: string
    label: VF module ID
    description: Unique ID for this VF Module instance.

  oam_net_id:
    type: string
    label: OAM network ID
    description: The ID of the OAM network.

  oam_net_subnet_prefix_length:
    type: string
    label: OAM net IPv4 subnet prefix length
    description: OAM network IPv4 subnet prefix length.

  oam_net_subnet_v6_prefix_length:
    type: string
    label: OAM net IPv6 subnet prefix length
    description: OAM network IPv6 subnet prefix length.

  default_gateway:
    type: string
    label: Default IPv4 gateway
    description: Default IPv4 gateway.

  default_gateway_v6:
    type: string
    label: Default IPv6 gateway
    description: Default IPv6 gateway.

  dns_servers:
    type: comma_delimited_list
    label: DNS servers
    description: List of DNS servers.

  ntp_servers:
    type: comma_delimited_list
    label: NTP servers
    description: List of NTP servers.

  oam_net_security_group_id:
    type: string
    label: OAM network security group ID
    description: >
      The ID of Security group applied on the port
      bound to the vSON OAM network.

  availability_zone_0:
    type: string
    label: Availability zone 0
    description: Availability zone.

  vson_app_server_group_id:
    type: string
    label: vSON APP server group policy
    description: >
      Tells what policy should be applied to the ServerGroup.
      Affinity policy will force instances to share the same hypervisor.
      Anti-affinity will force instances to run in different hypervisors.
      The group intended for vSON APP instances.

  vson_app_volume_id_0:
    type: string
    label: vSON APP Volume ID 0
    description: Volume ID of the vSON APP server.

  vson_app_name_0:
    type: string
    label: vSON APP instance name
    description: Unique name to be issued to the vSON APP instance.

  vson_app_image_name:
    type: string
    label: vSON base VM image name
    description: VM Image name the vSON APP instance will be created from.

  vson_app_flavor_name:
    type: string
    label: Flavor name
    description: The ID or name of the flavor to boot onto.

  vson_app_oam_net_ip_0:
    type: string
    label: vSON APP OAM network IPv4 address
    description: Fixed IPv4 assignment for the vSON APP instance on the OAM network.

  vson_app_oam_net_v6_ip_0:
    type: string
    label: vSON APP OAM network IPv6 address
    description: Fixed IPv6 assignment for the vSON APP instance on the OAM network.

  vson_dc_unit:
    type: string
    label: vSON Datacenter name
    description: vSON Datacenter name.

  vson_clm_0_oam_net_ip_0:
    type: string
    label: vSON Cluster Manager 0 OAM net IP
    description: IP of the first vSON Cluster Management server.

  vson_join_cluster_auth_token:
    type: string
    label: vSON join cluster auth token
    description: >
      Authentication Token generated for the user permitted to add
      a new vSON Datacenter.

  swift_account_auth_token:
    type: string
    label: Swift account auth token
    description: >
      Swift account auth token.
      Example:  041a5187bb4641f9b89583e2539776b0

  number_of_servers:
     type: number
     label: Number of Servers
     description: Number of vSON APP servers.
     constraints:
       - range: { min: 1, max: 1}

resources:

  vson_app_group:
    type: OS::Heat::ResourceGroup
    properties:
      count: {get_param: number_of_servers}
      resource_def:
        type: nested_vson_server_with_vol_dual_ip_stack.yaml
        properties:
          instance_index: "%index%"
          vnf_name: {get_param: vnf_name}
          vnf_id: {get_param: vnf_id}
          vf_module_name: {get_param: vf_module_name}
          vf_module_id: {get_param: vf_module_id}
          vfc_role: app
          oam_net_id: {get_param: oam_net_id}
          oam_net_subnet_prefix_length: {get_param: oam_net_subnet_prefix_length}
          oam_net_subnet_v6_prefix_length: {get_param: oam_net_subnet_v6_prefix_length}
          default_gateway: {get_param: default_gateway}
          default_gateway_v6: {get_param: default_gateway_v6}
          dns_servers: {get_param: dns_servers}
          ntp_servers: {get_param: ntp_servers}
          oam_net_security_group_id: {get_param: oam_net_security_group_id}
          availability_zones: [{get_param: availability_zone_0}]
          vson_server_group_id: {get_param: vson_app_server_group_id}
          volume_ids: [{get_param: vson_app_volume_id_0}]
          vson_vm_names: [{get_param: vson_app_name_0}]
          oam_net_ips: [{get_param: vson_app_oam_net_ip_0}]
          oam_net_v6_ips: [{get_param: vson_app_oam_net_v6_ip_0}]
          vson_vm_image_name: {get_param: vson_app_image_name}
          vson_vm_flavor_name: {get_param: vson_app_flavor_name}
          vson_dc_unit: {get_param: vson_dc_unit}
          vson_clm_oam_net_ip: {get_param: vson_clm_0_oam_net_ip_0}
          vson_join_cluster_auth_token: {get_param: vson_join_cluster_auth_token }
          swift_account_auth_token: {get_param: swift_account_auth_token}