2018-03-05 19:28:35 +01:00
|
|
|
heat_template_version: rocky
|
2016-06-20 08:37:55 +02:00
|
|
|
|
|
|
|
description: >
|
|
|
|
Composable Timezone service
|
|
|
|
|
|
|
|
parameters:
|
2017-06-22 17:25:03 +02:00
|
|
|
ServiceData:
|
|
|
|
default: {}
|
|
|
|
description: Dictionary packing service data
|
|
|
|
type: json
|
2016-08-11 23:07:46 +02:00
|
|
|
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
|
2017-02-24 06:27:58 -05:00
|
|
|
RoleName:
|
|
|
|
default: ''
|
|
|
|
description: Role name on which the service is applied
|
|
|
|
type: string
|
|
|
|
RoleParameters:
|
|
|
|
default: {}
|
|
|
|
description: Parameters specific to the role
|
|
|
|
type: json
|
2016-06-20 08:37:55 +02:00
|
|
|
EndpointMap:
|
|
|
|
default: {}
|
|
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
|
|
via parameter_defaults in the resource registry.
|
|
|
|
type: json
|
|
|
|
TimeZone:
|
|
|
|
default: 'UTC'
|
|
|
|
description: The timezone to be set on the overcloud.
|
|
|
|
type: string
|
|
|
|
|
|
|
|
outputs:
|
|
|
|
role_data:
|
|
|
|
description: Timezone role using composable services.
|
|
|
|
value:
|
2016-07-19 16:08:22 -04:00
|
|
|
service_name: timezone
|
2019-03-11 16:35:47 -06:00
|
|
|
host_prep_tasks:
|
2019-07-16 14:18:55 -05:00
|
|
|
- name: Run timezone role
|
|
|
|
include_role:
|
2020-01-20 10:31:22 -06:00
|
|
|
name: tripleo_timezone
|
2019-07-16 14:18:55 -05:00
|
|
|
vars:
|
|
|
|
tripleo_timezone: {get_param: TimeZone}
|