--- - 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