-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup role and playbook for tripleo services
Tests and docs included Signed-off-by: Jiri Podivin <[email protected]>
- Loading branch information
Showing
21 changed files
with
410 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
========================== | ||
Playbook - tripleo_cleanup | ||
========================== | ||
|
||
Stops and disables all tripleo services running on target hosts. | ||
Heuristic based on systemd unit name pattern matching is used to determine | ||
which services should be stopped and disabled. | ||
|
||
.. literalinclude:: ../../../playbooks/tripleo_cleanup.yml | ||
:language: YAML |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
================================ | ||
Role - edpm_tripleo_cleanup | ||
================================ | ||
|
||
Role stops and disables all systemd units enumerated to it. | ||
If the role doesn't recieve list of services, it will instead stop and disable | ||
all units containing string "tripleo" in their name. | ||
|
||
This way we can effectivelly prevent any leftovers of original tripleo based | ||
deployment from interfering with post-adoption setup. | ||
|
||
.. include:: | ||
../collections/osp/edpm/edpm_tripleo_cleanup_role.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
# Copyright 2024 Red Hat, Inc. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
|
||
|
||
- name: Cleanup Tripleo services | ||
hosts: "{{ edpm_override_hosts | default('all', true) }}" | ||
strategy: linear | ||
gather_facts: true | ||
any_errors_fatal: "{{ edpm_any_errors_fatal | default(true) }}" | ||
max_fail_percentage: "{{ edpm_max_fail_percentage | default(0) }}" | ||
tasks: | ||
- name: Stop and disable Tripleo services | ||
ansible.builtin.import_role: | ||
name: osp.edpm.edpm_tripleo_cleanup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
# Copyright 2024 Red Hat, Inc. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
|
||
|
||
# All variables intended for modification should be placed in this file. | ||
|
||
edpm_old_tripleo_services: [] | ||
|
||
# Remove unit files | ||
remove_files: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
# Copyright 2024 Red Hat, Inc. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
|
||
argument_specs: | ||
# roles/edpm_tripleo_cleanup/tasks/main.yml entry point | ||
main: | ||
short_description: The main entry point for the edpm_tripleo_cleanup role. | ||
options: | ||
edpm_old_tripleo_services: | ||
type: "list" | ||
description: | | ||
List of tripleo services to be disabled and stopped. | ||
If the list is empty, all services containing string 'tripleo' | ||
in their names will be disabled, stopped and masked. | ||
default: [] | ||
remove_files: | ||
type: "bool" | ||
description: | | ||
Remove unit files after disabling services. | ||
This operation is irreversible. Furthermore, issues may occur, | ||
if the unit files are managed by package manager. | ||
default: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
# Copyright 2024 Red Hat, Inc. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
|
||
|
||
galaxy_info: | ||
namespace: openstack | ||
author: OpenStack | ||
description: EDPM OpenStack Role -- edpm_tripleo_cleanup | ||
company: Red Hat | ||
license: Apache-2.0 | ||
min_ansible_version: '2.9' | ||
# | ||
# Provide a list of supported platforms, and for each platform a list of versions. | ||
# If you don't wish to enumerate all versions for a particular platform, use 'all'. | ||
# To view available platforms and versions (or releases), visit: | ||
# https://galaxy.ansible.com/api/v1/platforms/ | ||
# | ||
platforms: | ||
- name: 'EL' | ||
versions: | ||
- '8' | ||
- '9' | ||
|
||
galaxy_tags: | ||
- edpm | ||
|
||
|
||
# List your role dependencies here, one per line. Be sure to remove the '[]' above, | ||
# if you add dependencies to this list. | ||
dependencies: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
collections: | ||
- name: community.general |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
roles: | ||
- role: "osp.edpm.edpm_tripleo_cleanup" | ||
vars: | ||
edpm_old_tripleo_services: | ||
- fake-tripleo-service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
driver: | ||
name: delegated | ||
options: | ||
managed: false | ||
ansible_connection_options: | ||
ansible_connection: local | ||
platforms: | ||
- name: compute-1 | ||
groups: | ||
- compute | ||
provisioner: | ||
name: ansible | ||
inventory: | ||
hosts: | ||
all: | ||
hosts: | ||
compute-1: | ||
ctlplane_ip: 10.0.0.3 | ||
canonical_hostname: edpm-0.localdomain | ||
verifier: | ||
name: ansible | ||
scenario: | ||
test_sequence: | ||
- destroy | ||
- create | ||
- prepare | ||
- converge | ||
- verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
# Copyright 2024 Red Hat, Inc. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
- name: Prepare test_deps | ||
hosts: all | ||
roles: | ||
- role: ../../../../molecule/common/test_deps | ||
test_deps_extra_packages: | ||
- podman | ||
tasks: | ||
- name: Create mock service | ||
become: true | ||
ansible.builtin.copy: | ||
src: "{{ lookup('env', 'MOLECULE_SCENARIO_DIRECTORY') }}/test-data/fake-tripleo-service.service" | ||
dest: /usr/lib/systemd/system/fake-tripleo-service.service | ||
mode: '0644' | ||
|
||
- name: Enable mock service | ||
become: true | ||
ansible.builtin.systemd_service: | ||
name: fake-tripleo-service | ||
enabled: true | ||
|
||
- name: Start mock service | ||
become: true | ||
ansible.builtin.systemd_service: | ||
name: fake-tripleo-service | ||
state: started |
8 changes: 8 additions & 0 deletions
8
roles/edpm_tripleo_cleanup/molecule/default/test-data/fake-tripleo-service.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Unit] | ||
Description=Fake tripleo service | ||
|
||
[Service] | ||
ExecStart=/usr/bin/true | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
- name: Verify | ||
hosts: all | ||
tasks: | ||
- name: Get all services | ||
ansible.builtin.service_facts: | ||
- name: Fail if the fake-tripleo-service is not disabled and stopped | ||
ansible.builtin.fail: | ||
msg: "fake-tripleo-service is not in desired state {{ ansible_facts.services['fake-tripleo-service.service'] }}" | ||
when: ansible_facts.services["fake-tripleo-service.service"].state != "stopped" or ansible_facts.services["fake-tripleo-service.service"].status != "masked" |
3 changes: 3 additions & 0 deletions
3
roles/edpm_tripleo_cleanup/molecule/file_removal/collections.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
collections: | ||
- name: community.general |
9 changes: 9 additions & 0 deletions
9
roles/edpm_tripleo_cleanup/molecule/file_removal/converge.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
roles: | ||
- role: "osp.edpm.edpm_tripleo_cleanup" | ||
vars: | ||
edpm_old_tripleo_services: | ||
- fake-tripleo-service | ||
remove_files: true |
31 changes: 31 additions & 0 deletions
31
roles/edpm_tripleo_cleanup/molecule/file_removal/molecule.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
driver: | ||
name: delegated | ||
options: | ||
managed: false | ||
ansible_connection_options: | ||
ansible_connection: local | ||
platforms: | ||
- name: compute-1 | ||
groups: | ||
- compute | ||
provisioner: | ||
name: ansible | ||
inventory: | ||
hosts: | ||
all: | ||
hosts: | ||
compute-1: | ||
ctlplane_ip: 10.0.0.3 | ||
canonical_hostname: edpm-0.localdomain | ||
verifier: | ||
name: ansible | ||
scenario: | ||
test_sequence: | ||
- destroy | ||
- create | ||
- prepare | ||
- converge | ||
- verify |
40 changes: 40 additions & 0 deletions
40
roles/edpm_tripleo_cleanup/molecule/file_removal/prepare.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
# Copyright 2024 Red Hat, Inc. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
- name: Prepare test_deps | ||
hosts: all | ||
roles: | ||
- role: ../../../../molecule/common/test_deps | ||
test_deps_extra_packages: | ||
- podman | ||
tasks: | ||
- name: Create mock service | ||
become: true | ||
ansible.builtin.copy: | ||
src: "{{ lookup('env', 'MOLECULE_SCENARIO_DIRECTORY') }}/test-data/fake-tripleo-service.service" | ||
dest: /usr/lib/systemd/system/fake-tripleo-service.service | ||
mode: '0644' | ||
|
||
- name: Enable mock service | ||
become: true | ||
ansible.builtin.systemd_service: | ||
name: fake-tripleo-service | ||
enabled: true | ||
|
||
- name: Start mock service | ||
become: true | ||
ansible.builtin.systemd_service: | ||
name: fake-tripleo-service | ||
state: started |
8 changes: 8 additions & 0 deletions
8
roles/edpm_tripleo_cleanup/molecule/file_removal/test-data/fake-tripleo-service.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Unit] | ||
Description=Fake tripleo service | ||
|
||
[Service] | ||
ExecStart=/usr/bin/true | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
- name: Verify | ||
hosts: all | ||
tasks: | ||
- name: Check if unit file exists and fail if it does | ||
ansible.builtin.file: | ||
path: /usr/lib/systemd/system/fake-tripleo-service.service | ||
state: absent | ||
check_mode: true |
Oops, something went wrong.