summaryrefslogtreecommitdiffstats
path: root/tosca2heat/heat-translator/translator/tests/data/hot_output/network/hot_one_server_one_network.yaml
blob: 67653e6cea2942d9a3d04595afe5a827d9480add (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
heat_template_version: 2013-05-23

description: >
  TOSCA simple profile with 1 server bound to a new network

parameters:
  network_name:
    type: string
    description: Network name
    default: private_net

resources:
  my_server:
    type: OS::Nova::Server
    properties:
      flavor: m1.small
      image: cirros-0.3.2-x86_64-uec
      networks:
      - port: { get_resource: my_port }
      user_data_format: SOFTWARE_CONFIG
      software_config_transport: POLL_SERVER_HEAT

  my_network:
    type: OS::Neutron::Net
    properties:
      name:
        get_param: network_name

  my_network_subnet:
    type: OS::Neutron::Subnet
    properties:
      allocation_pools:
      - end: 192.168.0.200
        start: 192.168.0.50
      cidr: 192.168.0.0/24
      gateway_ip: 192.168.0.1
      ip_version: 4
      network: { get_resource: my_network }

  my_port:
    type: OS::Neutron::Port
    properties:
      network: { get_resource: my_network }

outputs: {}