2016-12-23 11:43:39 +00:00
|
|
|
heat_template_version: ocata
|
2016-06-06 15:40:37 -04:00
|
|
|
|
|
|
|
description: >
|
|
|
|
OpenStack Nova Consoleauth service configured with Puppet
|
|
|
|
|
|
|
|
parameters:
|
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
|
2016-08-17 09:26:05 -04:00
|
|
|
DefaultPasswords:
|
|
|
|
default: {}
|
|
|
|
type: json
|
2016-06-06 15:40:37 -04:00
|
|
|
EndpointMap:
|
|
|
|
default: {}
|
|
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
|
|
via parameter_defaults in the resource registry.
|
|
|
|
type: json
|
2016-06-09 15:39:22 +02:00
|
|
|
MonitoringSubscriptionNovaConsoleauth:
|
|
|
|
default: 'overcloud-nova-consoleauth'
|
|
|
|
type: string
|
2016-08-09 16:20:18 -04:00
|
|
|
NovaConsoleauthLoggingSource:
|
|
|
|
type: json
|
|
|
|
default:
|
|
|
|
tag: openstack.nova.consoleauth
|
|
|
|
path: /var/log/nova/nova-consoleauth.log
|
2016-06-06 15:40:37 -04:00
|
|
|
|
|
|
|
resources:
|
|
|
|
NovaBase:
|
|
|
|
type: ./nova-base.yaml
|
2016-06-29 17:30:08 +02:00
|
|
|
properties:
|
2016-08-11 23:07:46 +02:00
|
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
2016-08-17 09:26:05 -04:00
|
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
2016-06-29 17:30:08 +02:00
|
|
|
EndpointMap: {get_param: EndpointMap}
|
2016-06-06 15:40:37 -04:00
|
|
|
|
|
|
|
outputs:
|
|
|
|
role_data:
|
|
|
|
description: Role data for the Nova Consoleauth service.
|
|
|
|
value:
|
2016-07-28 10:30:10 +01:00
|
|
|
service_name: nova_consoleauth
|
2016-06-09 15:39:22 +02:00
|
|
|
monitoring_subscription: {get_param: MonitoringSubscriptionNovaConsoleauth}
|
2016-08-09 16:20:18 -04:00
|
|
|
logging_source: {get_param: NovaConsoleauthLoggingSource}
|
|
|
|
logging_groups:
|
|
|
|
- nova
|
2016-06-06 15:40:37 -04:00
|
|
|
config_settings:
|
|
|
|
get_attr: [NovaBase, role_data, config_settings]
|
|
|
|
step_config: |
|
|
|
|
include tripleo::profile::base::nova::consoleauth
|
2016-12-01 10:02:56 +00:00
|
|
|
upgrade_tasks:
|
|
|
|
- name: Stop nova_consoleauth service
|
2017-02-24 22:31:29 +01:00
|
|
|
tags: step1
|
2016-12-01 10:02:56 +00:00
|
|
|
service: name=openstack-nova-consoleauth state=stopped
|