eeb0d54958
This adds a role and service files to support an undercloud minion that runs additional services that connects to an undercloud. Change-Id: Ib6fb39f7baa6972ea9879f4f29d7dd46487e2b8f Related-Blueprint: undercloud-minion
86 lines
2.7 KiB
YAML
86 lines
2.7 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
Service to provide oslo messaging credentials for the Undercloud Minion
|
|
|
|
parameters:
|
|
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: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
NotifyPort:
|
|
default: 5672
|
|
description: The network port for messaging Notify backend
|
|
type: number
|
|
NotifyUserName:
|
|
default: guest
|
|
description: The username for messaging Notifications
|
|
type: string
|
|
NotifyPassword:
|
|
description: The password for messaging Notifications
|
|
type: string
|
|
hidden: true
|
|
NotifyUseSSL:
|
|
default: false
|
|
description: Messaging Notification client subscriber parameter to specify
|
|
an SSL connection to the messaging host.
|
|
type: string
|
|
RpcPort:
|
|
default: 5672
|
|
description: The network port for messaging backend
|
|
type: number
|
|
RpcUserName:
|
|
default: guest
|
|
description: The username for messaging backend
|
|
type: string
|
|
RpcPassword:
|
|
description: The password for messaging backend
|
|
type: string
|
|
hidden: true
|
|
RpcUseSSL:
|
|
default: false
|
|
description: >
|
|
Messaging client subscriber parameter to specify
|
|
an SSL connection to the messaging host.
|
|
type: string
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Service to provide oslo messaging credentials for the Undercloud Minion
|
|
value:
|
|
service_name: oslo_messaging_minion
|
|
global_config_settings:
|
|
oslo_messaging_notify_scheme: rabbit
|
|
oslo_messaging_notify_user_name: {get_param: NotifyUserName}
|
|
oslo_messaging_notify_password: {get_param: NotifyPassword}
|
|
oslo_messaging_notify_use_ssl: {get_param: NotifyUseSSL}
|
|
oslo_messaging_notify_port: {get_param: NotifyPort}
|
|
oslo_messaging_rpc_scheme: rabbit
|
|
oslo_messaging_rpc_user_name: {get_param: RpcUserName}
|
|
oslo_messaging_rpc_password: {get_param: RpcPassword}
|
|
oslo_messaging_rpc_use_ssl: {get_param: RpcUseSSL}
|
|
oslo_messaging_rpc_port: {get_param: RpcPort }
|
|
step_config: ''
|