X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=block-storage.yaml;h=761de5238ed3c87b07dc9822bdc97acf2aacc08c;hb=0d5526d4a96ba21c742c4b3055e7d3a672c47eeb;hp=d7548c9c250df90bf8c938bd67cc0588deb7e899;hpb=d0236047270924dec7a63863ff4c2af9cff1aa1a;p=apex-tripleo-heat-templates.git diff --git a/block-storage.yaml b/block-storage.yaml index d7548c9c..761de523 100644 --- a/block-storage.yaml +++ b/block-storage.yaml @@ -1,66 +1,64 @@ -HeatTemplateFormatVersion: '2012-12-12' -Description: 'Common Block Storage Configuration' -Parameters: +heat_template_version: 2014-10-16 +description: 'Common Block Storage Configuration' +parameters: BlockStorageImage: - Type: String - Default: overcloud-cinder-volume - KeystoneHost: - Type: String - Default: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] } - MySQLHost: - Type: String - Default: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] } - RabbitHost: - Type: String - Default: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] } - RabbitPassword: - Type: String - Default: "guest" - NoEcho: 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 + 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: + type: OS::Nova::Server + properties: image: - {Ref: BlockStorageImage} - flavor: {Ref: Flavor} - key_name: {Ref: KeyName} - InstanceType: '0' - ImageId: '0' - 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} - password: {Ref: RabbitPassword} - interfaces: - control: {Ref: NeutronPublicInterface} \ No newline at end of file + {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: {get_attr: [controller0, networks, ctlplane, 0]} + cinder_dsn: {list_join: ['', ['mysql://cinder:unset@', {get_attr: [controller0, networks, ctlplane, 0]} , '/cinder']]} + neutron_local_ip: {get_attr: [BlockStorage0 , networks, ctlplane, 0]} + 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 + 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