Automation to uninstall openQA on developer hosts
This commit is contained in:
parent
e1544e9789
commit
fcafb602c1
@ -13,3 +13,4 @@
|
|||||||
# range "end" parameter is exclusive, so add 1
|
# range "end" parameter is exclusive, so add 1
|
||||||
loop: "{{ range(1, (openqa_worker_count | int + 1)) | list }}"
|
loop: "{{ range(1, (openqa_worker_count | int + 1)) | list }}"
|
||||||
ignore_errors: "{{ ansible_check_mode }}"
|
ignore_errors: "{{ ansible_check_mode }}"
|
||||||
|
...
|
||||||
|
41
remove-rocky-openqa-developer-host.yml
Normal file
41
remove-rocky-openqa-developer-host.yml
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Delete local OpenQA testing environment
|
||||||
|
# This playbook is *NOT* intended for WAN-facing systems!
|
||||||
|
# Created: @akatch
|
||||||
|
---
|
||||||
|
- name: Rocky OpenQA Runbook
|
||||||
|
hosts: localhost
|
||||||
|
connection: local
|
||||||
|
become: true
|
||||||
|
vars_files:
|
||||||
|
- vars/openqa.yml
|
||||||
|
|
||||||
|
# This is to try to avoid the handler issue in pre/post tasks
|
||||||
|
handlers:
|
||||||
|
- name: Import handlers
|
||||||
|
ansible.builtin.import_tasks: handlers/main.yml
|
||||||
|
|
||||||
|
pre_tasks:
|
||||||
|
- name: Check if ansible cannot be run here
|
||||||
|
ansible.builtin.stat:
|
||||||
|
path: /etc/no-ansible
|
||||||
|
register: no_ansible
|
||||||
|
|
||||||
|
- name: Verify if we can run ansible
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- "not no_ansible.stat.exists"
|
||||||
|
success_msg: "We are able to run on this node"
|
||||||
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: Remove OpenQA installation from this system
|
||||||
|
ansible.builtin.import_tasks: tasks/remove_openqa.yml
|
||||||
|
|
||||||
|
post_tasks:
|
||||||
|
- name: Touching run file that ansible has ran here
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: /var/log/ansible.run
|
||||||
|
state: touch
|
||||||
|
mode: '0644'
|
||||||
|
owner: root
|
||||||
|
group: root
|
Loading…
Reference in New Issue
Block a user