tempest/roles/tempest-cleanup/tasks/main.yaml
Luigi Dino Tamagnone 9052dfcc85 Allow tempest cleanup delete resources based on prefix
A warning in command description of run cleanup first with dry-run
is added. The cleanup behavior is extended to allow users to delete
only resources if their name starts with a certain prefix.

Closes-Bug: #1945082
Change-Id: I65dfe051c891b3679538acec713e8616746c47f6
2024-03-29 20:14:15 +01:00

56 lines
1.7 KiB
YAML

- when: init_saved_state
block:
- name: Run tempest cleanup init-saved-state
become: yes
become_user: tempest
command: tox -evenv-tempest -- tempest cleanup --init-saved-state --debug
args:
chdir: "{{ devstack_base_dir }}/tempest"
- name: Cat saved_state.json
command: cat "{{ devstack_base_dir }}/tempest/saved_state.json"
- when: dry_run
block:
- import_tasks: dry_run.yaml
- name: Cat dry_run.json
command: cat "{{ devstack_base_dir }}/tempest/dry_run.json"
- when:
- not dry_run
- not init_saved_state
block:
- name: Run tempest cleanup
become: yes
become_user: tempest
command: tox -evenv-tempest -- tempest cleanup --debug
args:
chdir: "{{ devstack_base_dir }}/tempest"
when: not run_tempest_cleanup_prefix
- name: Run tempest cleanup with tempest prefix
become: yes
become_user: tempest
command: tox -evenv-tempest -- tempest cleanup --debug --prefix tempest
args:
chdir: "{{ devstack_base_dir }}/tempest"
when: run_tempest_cleanup_prefix
- when:
- run_tempest_fail_if_leaked_resources
- not init_saved_state
block:
# let's run dry run again, if haven't already, to check no leftover
# resources were left behind after the cleanup in the previous task
- import_tasks: dry_run.yaml
when: not dry_run
- name: Fail if any resources are leaked
become: yes
become_user: tempest
shell: |
python3 roles/tempest-cleanup/tasks/dry_run_checker.py --file {{ devstack_base_dir }}/tempest/dry_run.json --is-empty
args:
chdir: "{{ devstack_base_dir }}/tempest"