aboutsummaryrefslogtreecommitdiffstats
path: root/block-storage.yaml
blob: 98f62c44fd8f3eba8c47024609e38e83ec373a36 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
heat_template_version: 2014-10-16
description: 'Common Block Storage Configuration'
parameters:
  BlockStorageImage:
    type: string
    default: overcloud-cinder-volume
  OvercloudBlockStorageFlavor:
    default: baremetal
    description: Flavor for block storage nodes to request when deploying.
    type: string
  NeutronNetworkType:
    type: string
    default: 'gre'
  NeutronEnableTunnelling:
    type: string
    default: True
resources:
  BlockStorage0:
    type: OS::Nova::Server
    properties:
      image:
        {get_param: BlockStorageImage}
      flavor: {get_param: OvercloudBlockStorageFlavor}
      key_name: {get_param: KeyName}
      user_data_format: SOFTWARE_CONFIG
  BlockStorage0Deployment:
    type: OS::Heat::StructuredDeployment
    properties:
      server: {get_resource: BlockStorage0}
      config: {get_resource: BlockStorageConfig}
      input_values:
        controller_host: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {get_attr: [controller0, networks]} ]} ] }
        cinder_dsn: {list_join: ['', ['mysql://cinder:unset@', {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {get_attr: [controller0, networks]} ]} ] } , '/cinder']]}
        neutron_local_ip: {"Fn::Select": [0, "Fn::Select": [ctlplane, {get_attr: [BlockStorage0 , networks]}]]}
      signal_transport: NO_SIGNAL
  BlockStorageConfig:
    type: OS::Heat::StructuredConfig
    properties:
      group: os-apply-config
      config:
        admin-password: {get_param: AdminPassword}
        keystone:
          host: {get_input: controller_host}
        cinder:
          db: {get_input: cinder_dsn}
          volume_size_mb:
            get_param: CinderLVMLoopDeviceSize
          service-password:
            get_param: CinderPassword
          iscsi-helper:
            get_param: CinderISCSIHelper
        admin-password: {get_param: AdminPassword}
        rabbit:
          host: {get_input: controller_host}
          username: {get_param: RabbitUserName}
          password: {get_param: RabbitPassword}
        interfaces:
          control: {get_param: NeutronPublicInterface}
        neutron:
          ovs:
            local_ip: {get_input: neutron_local_ip}
            tenant_network_type: {get_param: NeutronNetworkType}
            enable_tunneling: {get_param: NeutronEnableTunnelling}
          service-password:
            get_param: NeutronPassword
        config:
          keystone:
            host: {get_input: controller_host}
          cinder:
            db: {get_input: cinder_dsn}
            volume_size_mb:
              get_param: CinderLVMLoopDeviceSize
            service-password:
              get_param: CinderPassword
            iscsi-helper:
              get_param: CinderISCSIHelper
          admin-password: {get_param: AdminPassword}
          rabbit:
            host: {get_input: controller_host}
            username: {get_param: RabbitUserName}
            password: {get_param: RabbitPassword}
          interfaces:
            control: {get_param: NeutronPublicInterface}
          neutron:
            ovs:
              local_ip: { get_input: neutron_local_ip }
              tenant_network_type: {get_param: NeutronNetworkType}
              enable_tunneling: {get_param: NeutronEnableTunnelling}
            service-password:
              get_param: NeutronPassword