diff options
author | Lénaïc Huard <lhuard@amadeus.com> | 2015-06-05 17:44:33 +0200 |
---|---|---|
committer | Lénaïc Huard <lhuard@amadeus.com> | 2015-07-17 14:31:34 +0200 |
commit | fb4083bb920d193c2f292b49f370667029c317ba (patch) | |
tree | fd6af5ed5d884623acee3eb772cbfbb467a6e151 /playbooks/aws/openshift-cluster/terminate.yml | |
parent | e0211ca67ce18fc9f74d0a9c82cf14a28f395e4d (diff) | |
download | openshift-fb4083bb920d193c2f292b49f370667029c317ba.tar.gz openshift-fb4083bb920d193c2f292b49f370667029c317ba.tar.bz2 openshift-fb4083bb920d193c2f292b49f370667029c317ba.tar.xz openshift-fb4083bb920d193c2f292b49f370667029c317ba.zip |
Implement RHEL subscription for enterprise deployment type
Diffstat (limited to 'playbooks/aws/openshift-cluster/terminate.yml')
-rw-r--r-- | playbooks/aws/openshift-cluster/terminate.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/playbooks/aws/openshift-cluster/terminate.yml b/playbooks/aws/openshift-cluster/terminate.yml index 9c3703aba..3a08ed966 100644 --- a/playbooks/aws/openshift-cluster/terminate.yml +++ b/playbooks/aws/openshift-cluster/terminate.yml @@ -13,6 +13,15 @@ ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" with_items: groups[scratch_group] | default([]) | difference(['localhost']) +- name: Unsubscribe VMs + hosts: oo_hosts_to_terminate + 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'] + - name: Terminate instances hosts: localhost connection: local |