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_1_vson_mon_volume.yaml
blob: f74d55922dd7ce0edcf267f435d0bf72eded9230 (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
heat_template_version: 2014-10-16
#################################
# Author: Dmitry Orzhehovsky
# Email:  dorzheho@cisco.com
#################################

description: >
  Create a Cinder volume.
  Cinder volume is a storage in the form of block devices. 
  It can be used, for example, for providing storage to instance. 
  Volume supports creation from snapshot, backup or image. 
  Also volume can be created only by size.
  The template creates volume for vSON Monitor and KPIs routing server
  (Virtual Function Component MON).

parameters:

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

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

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

  vson_mon_volume_name_0:
    type: string
    label: vSON MON volume name
    description: Volume name.

  vson_mon_volume_size_0:
    type: number
    label: vSON MON cinder volume size 
    description: Size of the Cinder volume. Measured in gigabytes.

  vson_mon_image_name:
    type: string
    label: vSON MON VM image name 
    description: Image name the volume will be created from. 

resources:

  vson_mon_volume_0:
    type: OS::Cinder::Volume
    properties:
      name: {get_param: vson_mon_volume_name_0}
      metadata:
        vnf_name: {get_param: vnf_name}
        vf_module_name: {get_param: vf_module_name}
      availability_zone: {get_param: availability_zone_0}
      size: {get_param: vson_mon_volume_size_0}
      image: {get_param: vson_mon_image_name}
      description: >
        vSON MON cinder volume.
        The volume is created from the vSON base VM image.

outputs:

  vson_mon_volume_id_0:
    value: {get_resource: vson_mon_volume_0}
    description: ID of the vSON Monitor and KPIs routing volume.