92624d6730
Adds ffu_tasks for ceilometer - stop services on step 1. In the docker/ templates services are also disabled. Lots of changes for ceilo-* since Newton: --> openstack-ceilometer-api, -collector and -expirer are removed in Pike and no longer in the templates. The disable files are re-added by the parent review so these services can be retired with ffu_tasks. --> The disabled services are set back in environment for Fast Forward Upgrade Change-Id: I1c8ac2285ab222cfb7cb7ff898d222ae6e846567
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
heat_template_version: queens
|
|
|
|
description: >
|
|
OpenStack Ceilometer API service, disabled since pike
|
|
|
|
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
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the disabled Ceilometer API role.
|
|
value:
|
|
service_name: ceilometer_api_disabled
|
|
fast_forward_upgrade_tasks:
|
|
- name: Purge Ceilometer apache config files
|
|
file: path=/etc/httpd/conf.d/10-ceilometer_wsgi.conf state=absent
|
|
when:
|
|
- step|int == 1
|
|
- release == 'ocata'
|
|
- name: Clean up ceilometer port from ports.conf
|
|
lineinfile: dest=/etc/httpd/conf/ports.conf state=absent regexp="8777$"
|
|
when:
|
|
- step|int == 1
|
|
- release == 'ocata'
|