X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=block-storage.yaml;h=ce60ce26cccf010a01999c533502180bdf220140;hb=5f74f5a5f84577446224c9f2c90c3a045e6a272d;hp=ef55506f1fedef36f04365290d7539083f878532;hpb=ff0959a200cfad26d0c688bf293e3ebeb365ff48;p=apex-tripleo-heat-templates.git diff --git a/block-storage.yaml b/block-storage.yaml index ef55506f..ce60ce26 100644 --- a/block-storage.yaml +++ b/block-storage.yaml @@ -4,65 +4,82 @@ Parameters: BlockStorageImage: Type: String Default: overcloud-cinder-volume - KeystoneHost: + OvercloudBlockStorageFlavor: + Default: baremetal + Description: Flavor for block storage nodes to request when deploying. Type: String - Default: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notCompute0, networks]} ]} ] } - MySQLHost: + NeutronNetworkType: Type: String - Default: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notCompute0, networks]} ]} ] } - RabbitHost: + Default: 'gre' + NeutronEnableTunnelling: Type: String - Default: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notCompute0, networks]} ]} ] } - RabbitUserName: - Type: String - Default: "guest" - RabbitPassword: - Type: String - Default: "guest" - NoEcho: true + Default: True Resources: - BlockStorageAccessPolicy: - Type: OS::Heat::AccessPolicy - Properties: - AllowedResources: - - BlockStorage0 - BlockStorageUser: - Type: AWS::IAM::User - Properties: - Policies: [ { Ref: BlockStorageAccessPolicy } ] - BlockStorageKey: - Type: AWS::IAM::AccessKey - Properties: - UserName: - Ref: BlockStorageUser BlockStorage0: Type: OS::Nova::Server Properties: image: {Ref: BlockStorageImage} - flavor: {Ref: Flavor} + flavor: {Ref: OvercloudBlockStorageFlavor} key_name: {Ref: KeyName} - Metadata: - os-collect-config: - cfn: - access_key_id: - Ref: BlockStorageKey - secret_access_key: - Fn::GetAtt: [ BlockStorageKey, SecretAccessKey ] - stack_name: {Ref: 'AWS::StackName'} - OpenStack::ImageBuilder::Elements: [ cinder ] - keystone: - host: {Ref: KeystoneHost} - cinder: - db: {"Fn::Join": ['', ['mysql://cinder:unset@', {Ref: MySQLHost}, '/cinder']]} - volume_size_mb: '5000' - service-password: - Ref: CinderPassword - volume: 'true' - admin-password: {Ref: AdminPassword} - rabbit: - host: {Ref: RabbitHost} - username: {Ref: RabbitUserName} - password: {Ref: RabbitPassword} - interfaces: - control: {Ref: NeutronPublicInterface} + 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