aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/legalUploadWithWarning/vmme_small_create_fsb.yml
blob: 2d695a50c10bd3bcc0306841d741b9c9c0876359 (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
heat_template_version:  2013-05-23

description: server template for vMME

parameters:

      volume_type:
        type: string
        label:  volume type
        description: volume type Gold

      volume_size:
        type: number
        label:  volume size
        description: my volume size 320GB

      FSB_1_image:
        type: string
        label: MME_FSB1
        description: MME_FSB1_15B-CP04-r5a01

      FSB_2_image:
        type: string
        label: MME_FSB2
        description: MME_FSB2_15B-CP04-r5a01

      FSB1_volume_name:
        type: string
        label: FSB1_volume
        description: FSB1_volume_1

      FSB2_volume_name:
        type: string
        label: FSB2_volume
        description: FSB2_volume_1

resources:

    FSB1_volume:
      type: OS::Cinder::Volume
      properties:
        size: {get_param: volume_size}
        volume_type: {get_param: volume_type}
        name: {get_param: FSB1_volume_name}
        image: {get_param: FSB_1_image}

    FSB2_volume:
      type: OS::Cinder::Volume
      properties:
        size: {get_param: volume_size}
        volume_type: {get_param: volume_type}
        name: {get_param: FSB2_volume_name}
        image: {get_param: FSB_2_image}