Merge "Allow to remove xinetd service"

This commit is contained in:
Zuul 2018-08-02 08:14:58 +00:00 committed by Gerrit Code Review
commit 7248cd24ba
8 changed files with 81 additions and 1 deletions

View File

@ -0,0 +1,66 @@
heat_template_version: rocky
description: >
Drop xinetd if operator requests it.
parameters:
DefaultPasswords:
default: {}
type: json
EndpointMap:
default: {}
description: Mapping of service endpoint -> protocol. Typically set
via parameter_defaults in the resource registry.
type: json
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
RoleName:
default: ''
description: Role name on which the service is applied
type: string
RoleParameters:
default: {}
description: Parameters specific to the role
type: json
UpgradeRemoveUnusedPackages:
default: false
type: boolean
description: Remove package if the service is being disabled during upgrade
outputs:
role_data:
description: Remove xinetd since it is not used anymore in containerized environment
value:
service_name: xinetd
docker_config: {}
puppet_config:
config_volume: ''
step_config: ''
config_image: ''
config_settings: {}
upgrade_tasks:
- when: step|int == 2
block:
- name: stop and deactivate xinetd service
service:
name: xinetd
state: stopped
enabled: no
- when: step|int == 3
block:
- name: set remove_xinetd_pkg fact
set_fact:
remove_xinetd_pkg: {get_param: UpgradeRemoveUnusedPackages}
- name: remove xinetd package
package:
name: xinetd
state: removed
when: remove_xinetd_pkg|bool

View File

@ -225,7 +225,8 @@ resource_registry:
OS::TripleO::Services::GnocchiApi: docker/services/gnocchi-api.yaml
OS::TripleO::Services::GnocchiMetricd: docker/services/gnocchi-metricd.yaml
OS::TripleO::Services::GnocchiStatsd: docker/services/gnocchi-statsd.yaml
# Drop Xinetd
OS::TripleO::Services::Xinetd: docker/services/xinetd.yaml
# Services that are disabled by default (use relevant environment files):

View File

@ -0,0 +1,8 @@
---
features:
- Allows to stop and disable xinetd service, as it not used anymore.
- Allows to remove xinetd package when UpgradeRemoveUnusedPackages is set to
"True".
deprecations:
- xinetd service is deprecated, so we stop it, disable it, and optionnaly
remove its package.

View File

@ -179,3 +179,4 @@
- OS::TripleO::Services::Vpp
- OS::TripleO::Services::Zaqar
- OS::TripleO::Services::Ptp
- OS::TripleO::Services::Xinetd

View File

@ -172,3 +172,4 @@
- OS::TripleO::Services::Vpp
- OS::TripleO::Services::Zaqar
- OS::TripleO::Services::Ptp
- OS::TripleO::Services::Xinetd

View File

@ -87,3 +87,4 @@
- OS::TripleO::Services::UndercloudUpgrade
- OS::TripleO::Services::TripleoValidations
- OS::TripleO::Services::Zaqar
- OS::TripleO::Services::Xinetd

View File

@ -182,6 +182,7 @@
- OS::TripleO::Services::Vpp
- OS::TripleO::Services::Zaqar
- OS::TripleO::Services::Ptp
- OS::TripleO::Services::Xinetd
###############################################################################
# Role: Compute #
###############################################################################

View File

@ -90,4 +90,5 @@
- OS::TripleO::Services::UndercloudUpgrade
- OS::TripleO::Services::TripleoValidations
- OS::TripleO::Services::Zaqar
- OS::TripleO::Services::Xinetd