summaryrefslogtreecommitdiffstats
path: root/playbooks/aws/openshift-cluster
diff options
context:
space:
mode:
authorJoel Diaz <jdiaz@redhat.com>2018-02-01 17:21:10 +0000
committerJoel Diaz <jdiaz@redhat.com>2018-02-02 14:46:20 +0000
commitf6afef5ca361340e31807919eeef255df75b17d3 (patch)
tree11e467ac3046468a92e50651d98ba2c36fa83d6d /playbooks/aws/openshift-cluster
parent4fe88b001295566d49db1fe711870bf43c40c1ab (diff)
downloadopenshift-f6afef5ca361340e31807919eeef255df75b17d3.tar.gz
openshift-f6afef5ca361340e31807919eeef255df75b17d3.tar.bz2
openshift-f6afef5ca361340e31807919eeef255df75b17d3.tar.xz
openshift-f6afef5ca361340e31807919eeef255df75b17d3.zip
add S3 bucket cleanup
Default to just cleaning out all the objects in the S3 bucket (IFF openshift_aws_create_s3 is 'true'). If you really, trully want to delete the S3 bucket and free up the bucket name, you can set openshift_aws_really_delete_s3_bucket to 'true' ('false' by default).
Diffstat (limited to 'playbooks/aws/openshift-cluster')
-rw-r--r--playbooks/aws/openshift-cluster/uninstall_s3.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/playbooks/aws/openshift-cluster/uninstall_s3.yml b/playbooks/aws/openshift-cluster/uninstall_s3.yml
new file mode 100644
index 000000000..448b47aee
--- /dev/null
+++ b/playbooks/aws/openshift-cluster/uninstall_s3.yml
@@ -0,0 +1,10 @@
+---
+- name: Empty/delete s3 bucket
+ hosts: localhost
+ connection: local
+ tasks:
+ - name: empty/delete s3 bucket
+ include_role:
+ name: openshift_aws
+ tasks_from: uninstall_s3.yml
+ when: openshift_aws_create_s3 | default(true) | bool