3c3afe6b01
It was using a hiera key, and fetching that from a hiera call in the puppet manfiest. But we can remove that if we set it via hiera from t-h-t. Change-Id: I5af5ccb88e644f4dd25503d8e7a93796695d3039
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
heat_template_version: ocata
|
|
|
|
description: >
|
|
Mysql client settings
|
|
|
|
parameters:
|
|
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
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
EnableInternalTLS:
|
|
type: boolean
|
|
default: false
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role for setting mysql client parameters
|
|
value:
|
|
service_name: mysql_client
|
|
config_settings:
|
|
tripleo::profile::base::database::mysql::client::mysql_client_bind_address: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
tripleo::profile::base::database::mysql::client::enable_ssl: {get_param: EnableInternalTLS}
|
|
step_config: |
|
|
include ::tripleo::profile::base::database::mysql::client
|