mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-27 13:53:12 +00:00
21 lines
493 B
YAML
21 lines
493 B
YAML
---
|
|
- name: Destroy
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
collections:
|
|
- kubernetes.core
|
|
|
|
tasks:
|
|
- name: Destroy test kind cluster
|
|
command: kind delete cluster --name osdk-test --kubeconfig {{ kubeconfig }}
|
|
tags:
|
|
- always
|
|
|
|
- name: Unset pull policy
|
|
command: '{{ kustomize }} edit remove patch --path pull_policy/{{ operator_pull_policy }}.yaml'
|
|
args:
|
|
chdir: '{{ config_dir }}/testing'
|
|
tags:
|
|
- always
|