Clean up test namespace (#852) (#854)

This is a backport of PR #852 as merged into main (9f60b15).
SUMMARY

The helm_set_values test target did not clean up its namespace which is leading to unstable tests in the k8s_drain target.

ISSUE TYPE


Bugfix Pull Request

COMPONENT NAME

ADDITIONAL INFORMATION
This commit is contained in:
patchback[bot]
2025-01-17 15:29:22 +00:00
committed by GitHub
parent 05a942e41e
commit 8cee9fddbe

View File

@@ -104,3 +104,11 @@
file:
state: absent
path: "{{ ymlfile.path }}"
ignore_errors: true
- name: Delete namespace
k8s:
state: absent
kind: namespace
name: "{{ helm_namespace }}"
ignore_errors: true