Skip to content

Commit

Permalink
Delete existing namespace prior running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abikouo authored Jan 6, 2025
1 parent 2f44938 commit 6219c09
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@
src: "test-chart-reuse-values"
dest: "{{ helm_dir.path }}"

- name: Delete existing namespace
kubernetes.core.k8s:
state: absent
wait: true
kind: Namespace
name: "{{ helm_namespace }}"
ignore_errors: true

- name: Create helm release
kubernetes.core.helm:
state: present
Expand Down

0 comments on commit 6219c09

Please sign in to comment.