diff options
Diffstat (limited to 'playbooks/openstack')
| -rw-r--r-- | playbooks/openstack/openshift-cluster/terminate.yml | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/playbooks/openstack/openshift-cluster/terminate.yml b/playbooks/openstack/openshift-cluster/terminate.yml index fc4ec3c88..62df2be73 100644 --- a/playbooks/openstack/openshift-cluster/terminate.yml +++ b/playbooks/openstack/openshift-cluster/terminate.yml @@ -5,6 +5,31 @@    vars_files:    - vars.yml    tasks: +  - set_fact: cluster_group=tag_env_{{ cluster_id }} +  - add_host: +      name: "{{ item }}" +      groups: oo_hosts_to_terminate +      ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" +      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +    with_items: groups[cluster_group] | default([]) + +- name: Unsubscribe VMs +  hosts: oo_hosts_to_terminate +  vars_files: +  - vars.yml +  roles: +  - role: rhel_unsubscribe +    when: deployment_type == "enterprise" and +          ansible_distribution == "RedHat" and +          lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) | +            default('no', True) | lower in ['no', 'false'] + +- hosts: localhost +  connection: local +  gather_facts: no +  vars_files: +  - vars.yml +  tasks:    - name: Delete the OpenStack Stack      command: 'heat stack-delete openshift-ansible-{{ cluster_id }}-stack'      register: stack_delete_result | 
