aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services/manila-backend-generic.yaml
blob: 44f4a64246f5052b6440f344786896ef6cf558b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
.highlight .nx { color: #a6e22e } /* Name.Other */
.highlight .py { color: #f8f8f2 } /* Name.Property */
.highlight .nt { color: #f92672 } /* Name.Tag */
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
.highlight .ow { color: #f92672 } /* Operator.Word */
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
.highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
heat_template_version: pike

description: >
  Openstack Manila generic backend.

parameters:
  ManilaGenericBackendName:
    type: string
    default: tripleo_generic
  ManilaGenericDriverHandlesShareServers:
    type: string
    default: true
  ManilaGenericSmbTemplateConfigPath:
    type: string
    default: '$state_path/smb.conf'
  ManilaGenericVolumeNameTemplate:
    type: string
    default: 'manila-share-%s'
  ManilaGenericVolumeSnapshotNameTemplate:
    type: string
    default: 'manila-snapshot-%s'
  ManilaGenericShareMountPath:
    type: string
    default: '/shares'
  ManilaGenericMaxTimeToCreateVolume:
    type: string
    default: '180'
  ManilaGenericMaxTimeToAttach:
    type: string
    default: '120'
  ManilaGenericServiceInstanceSmbConfigPath:
    type: string
    default: '$share_mount_path/smb.conf'
  ManilaGenericShareVolumeFsType:
    type: string
    default: 'ext4'
  ManilaGenericCinderVolumeType:
    type: string
    default: ''
  ManilaServiceInstanceUser:
    type: string
    default: ''
  ManilaServiceInstancePassword: #SET THIS via parameter_defaults
    type: string
    hidden: true
  ManilaServiceInstanceFlavorId:
    type: number
    default: 1
  ManilaServiceNetworkCidr:
    type: string
    default: '172.16.0.0/16'
  ServiceData:
    default: {}
    description: Dictionary packing service data
    type: json
  ServiceNetMap:
    default: {}
    description: Mapping of service_name -> network name. Typically set
                 via parameter_defaults in the resource registry.  This
                 mapping overrides those in ServiceNetMapDefaults.
    type: json
  DefaultPasswords:
    default: {}
    type: json
  RoleName:
    default: ''
    description: Role name on which the service is applied
    type: string
  RoleParameters:
    default: {}
    description: Parameters specific to the role
    type: json
  EndpointMap:
    default: {}
    type: json
    description: Mapping of service endpoint -> protocol. Typically set
                 via parameter_defaults in the resource registry.

outputs:
  role_data:
    description: Role data for the Manila Generic backend.
    value:
      service_name: manila_backend_generic
      config_settings:
        manila::backend::generic::title: {get_param: ManilaGenericBackendName}
        manila::backend::generic::driver_handles_share_servers: {get_param: ManilaGenericDriverHandlesShareServers}
        manila::backend::generic::smb_template_config_path: {get_param: ManilaGenericSmbTemplateConfigPath}
        manila::backend::generic::volume_name_template: {get_param: ManilaGenericVolumeNameTemplate}
        manila::backend::generic::volume_snapshot_name_template: {get_param: ManilaGenericVolumeSnapshotNameTemplate}
        manila::backend::generic::share_mount_path: {get_param: ManilaGenericShareMountPath}
        manila::backend::generic::max_time_to_create_volume: {get_param: ManilaGenericMaxTimeToCreateVolume}
        manila::backend::generic::max_time_to_attach: {get_param: ManilaGenericMaxTimeToAttach}
        manila::backend::generic::service_instance_smb_config_path: {get_param: ManilaGenericServiceInstanceSmbConfigPath}
        manila::backend::generic::share_volume_fstype: {get_param: ManilaGenericShareVolumeFsType}
        manila::backend::generic::cinder_volume_type: {get_param: ManilaGenericCinderVolumeType}
        manila::service_instance::service_instance_user: {get_param: ManilaServiceInstanceUser}
        manila::service_instance::service_instance_password: {get_param: ManilaServiceInstancePassword}
        manila::service_instance::service_instance_flavor_id: {get_param: ManilaServiceInstanceFlavorId}
        manila::service_instance::service_network_cidr: {get_param: ManilaServiceNetworkCidr}

      step_config: