diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2018-02-05 09:42:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-05 09:42:38 -0500 |
commit | 2c3803772e0ca31443c8e8deb215c0b771df7ee0 (patch) | |
tree | d45a01eb6fb0186e1345fd9c58185a01dc5d7bc6 /playbooks/aws/README.md | |
parent | 26caf813c55a090279260436ec315d8331bcc2e4 (diff) | |
parent | f6afef5ca361340e31807919eeef255df75b17d3 (diff) | |
download | openshift-2c3803772e0ca31443c8e8deb215c0b771df7ee0.tar.gz openshift-2c3803772e0ca31443c8e8deb215c0b771df7ee0.tar.bz2 openshift-2c3803772e0ca31443c8e8deb215c0b771df7ee0.tar.xz openshift-2c3803772e0ca31443c8e8deb215c0b771df7ee0.zip |
Merge pull request #6985 from joelddiaz/deprovision_s3_buckets
add S3 bucket cleanup
Diffstat (limited to 'playbooks/aws/README.md')
-rw-r--r-- | playbooks/aws/README.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/playbooks/aws/README.md b/playbooks/aws/README.md index bdc98d1e0..cf811ca84 100644 --- a/playbooks/aws/README.md +++ b/playbooks/aws/README.md @@ -201,9 +201,7 @@ There are more enhancements that are arriving for provisioning. These will incl ## Uninstall / Deprovisioning -At this time, only deprovisioning of the output of the prerequisites step is provided. You can/must manually remove things like ELBs and scale groups before attempting to undo the work by the preprovisiong step. - -To undo the work done by the prerequisites playbook, simply call the uninstall_prerequisites.yml playbook. You should use the same inventory file and provisioning_vars.yml file that was used during provisioning. +To undo the work done by the prerequisites playbook, simply call the uninstall_prerequisites.yml playbook. You will have needed to remove any of the other objects (ie ELBs, instances, etc) before attempting. You should use the same inventory file and provisioning_vars.yml file that was used during provisioning. ``` ansible-playbook -i <previous inventory file> -e @<previous provisioning_vars file> uninstall_prerequisites.yml @@ -211,4 +209,10 @@ ansible-playbook -i <previous inventory file> -e @<previous provisioning_vars fi This should result in removal of the security groups and VPC that were created. +Cleaning up the S3 bucket contents can be accomplished with: + +``` +ansible-playbook -i <previous inventory file> -e @<previous provisioning_vars file> uninstall_s3.yml +``` + NOTE: If you want to also remove the ssh keys that were uploaded (**these ssh keys would be shared if you are running multiple clusters in the same AWS account** so we don't remove these by default) then you should add 'openshift_aws_enable_uninstall_shared_objects: True' to your provisioning_vars.yml file. |