mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
17 lines
428 B
YAML
17 lines
428 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 }}
|
|
|
|
- name: Unset pull policy
|
|
command: '{{ kustomize }} edit remove patch pull_policy/{{ operator_pull_policy }}.yaml'
|
|
args:
|
|
chdir: '{{ config_dir }}/testing'
|