aboutsummaryrefslogtreecommitdiffstats
path: root/block-storage.yaml
blob: ce60ce26cccf010a01999c533502180bdf220140 (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
HeatTemplateFormatVersion: '2012-12-12'
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:
        {Ref: BlockStorageImage}
      flavor: {Ref: OvercloudBlockStorageFlavor}
      key_name: {Ref: KeyName}
  BlockStorage0Deployment:
    Type: OS::Heat::StructuredDeployment
    Properties:
      server: {Ref: BlockStorage0}
      config: {Ref: BlockStorageConfig}
      input_values:
        controller_host: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [controller0, networks]} ]} ] }
        cinder_dsn: {"Fn::Join": ['', ['mysql://cinder:unset@', {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [controller0, networks]} ]} ] } , '/cinder']]}
        neutron_local_ip: {"Fn::Select": [0, "Fn::Select": [ctlplane, [{"Fn::GetAtt": [BlockStorage0 , networks]}]]]}
  BlockStorageConfig:
    Type: OS::Heat::StructuredConfig
    Properties:
      config:
        admin-password: {Ref: AdminPassword}
        keystone:
          host: {get_input: controller_host}
        cinder:
          db: {get_input: cinder_dsn}
          volume_size_mb: '5000'
          service-password:
            Ref: CinderPassword
          iscsi-helper:
            Ref: CinderISCSIHelper
        admin-password: {Ref: AdminPassword}
        rabbit:
          host: {get_input: controller_host}
          username: {Ref: RabbitUserName}
          password: {Ref: RabbitPassword}
        interfaces:
          control: {Ref: NeutronPublicInterface}
        neutron:
          ovs:
            local_ip: {get_input: neutron_local_ip}
            tenant_network_type: {Ref: NeutronNetworkType}
            enable_tunneling: {Ref: NeutronEnableTunnelling}
          service-password:
            Ref: NeutronPassword
        config:
          keystone:
            host: {get_input: controller_host}
          cinder:
            db: {get_input: cinder_dsn}
            volume_size_mb: '5000'
            service-password:
              Ref: CinderPassword
            iscsi-helper:
              Ref: CinderISCSIHelper
          admin-password: {Ref: AdminPassword}
          rabbit:
            host: {get_input: controller_host}
            username: {Ref: RabbitUserName}
            password: {Ref: RabbitPassword}
          interfaces:
            control: {Ref: NeutronPublicInterface}
          neutron:
            ovs:
              local_ip: { get_input: neutron_local_ip }
              tenant_network_type: {Ref: NeutronNetworkType}
              enable_tunneling: {Ref: NeutronEnableTunnelling}
            service-password:
              Ref: NeutronPassword