aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/scalingInstances/oneComputeTypeOnePortNodeConnectedIn/in/hot-mog-0108-bs1271.yml
blob: f949b8e431c3c228834c9b3ab959a7fd42343147 (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
heat_template_version: 2013-05-23

description: heat template that creates MOG stack

parameters:
  pd_server_names:
    type: comma_delimited_list
    label: PD server names
    description: name of the PD instance
  pd_image_name:
    type: string
    label: image name
    description: PD image name
  pd_flavor_name:
    type: string
    label: PD flavor name
    description: flavor name of PD instance
  availabilityzone_name:
    type: string
    label: availabilityzone name
    description: availabilityzone name
  packet_mirror_network_name:
    type: string
    label: packet mirror network name
    description: name of the oam network

resources:
  server_pd_01:
    type: OS::Nova::Server
    properties:
      name: {get_param: [pd_server_names, 0]}
      image: {get_param: pd_image_name}
      flavor: {get_param: pd_flavor_name}
      availability_zone: {get_param: availabilityzone_name}
      networks:
        - port: {get_resource: pd01_port_0}
      user_data_format:  RAW_SERVER_PD_1
  server_pd_02:
    type: OS::Nova::Server
    properties:
      name: {get_param: [pd_server_names, 1]}
      image: {get_param: pd_image_name}
      flavor: {get_param: pd_flavor_name}
      availability_zone: {get_param: availabilityzone_name}
      networks:
        - port: {get_resource: pd01_port_1}
      user_data_format:  RAW_SERVER_PD_2
  pd01_port_0:
    type: OS::Neutron::Port
    properties:
      network: Network-0
      security_groups: [{get_resource: jsa_security_group}]
      replacement_policy: AUTO_PORT_0
  pd01_port_1:
    type: OS::Neutron::Port
    properties:
      network: Network-1
      security_groups: [{get_resource: jsa_security_group}]
      replacement_policy: AUTO_PORT_1
  resource_with_dependOn:
    type: OS::Neutron::Net
    depends_on:
      - server_pd_01
      - server_pd_02
    properties:
      name:
        get_param: packet_mirror_network_name
  jsa_security_group:
    type: OS::Neutron::SecurityGroup
    properties:
      description: ems security group
      name: Test-SecurityGroup
      rules: [{"direction": ingress, "ethertype": IPv6, "protocol": icmp, "remote_ip_prefix": "::/0"}]