aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-core/src/test/resources/heatTreeArtifactsValidationOutput/ocgapp_volume.yaml
blob: dcb5a337ecee7d2f7b5911d41aff4b2b6b72571a (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: 2015-04-30 

description: OCG template for the APP volumes
#file version 1.0
parameters:
  vnf_name:
    type: string
    label: OCG VNF Name
    description: OCG VNF Name
  ocgapp_volume_size_0:
    type: number
    label: Cinder volume 1 size
    description: the size of the Cinder volume
    constraints:
      - range: { min: 50, max: 400 }
  ocgapp_volume_type_0:
    type: string
    label: app vm 1 volume type
    description: the name of the target volume backend for the first OCG APP
  volume_count:
    type: number
    label: volume count
    description: num of volumes needed
    constraints:
      - allowed_values: [1,2,4]

resources:

  ocgapp_volume_resource_group:
    type: OS::Heat::ResourceGroup
    properties:
      count: {get_param: volume_count}
      index_var: index
      resource_def:
        type: ocgapp_nested_volume.yaml
        properties:
          index: index
          size: {get_param: ocgapp_volume_size_0}
          volume_type: {get_param: ocgapp_volume_type_0}
          vnf_name: {get_param: vnf_name}

outputs:
  ocgapp_volume_ids:
    description: ocgapp volume ids
    value: {get_attr: [ocgapp_volume_resource_group, ocgapp_volume_id_0]}