소스 검색

Merge pull request #7218 from joelddiaz/cluster_op_deprov_infra

Automatic merge from submit-queue.

add deprovision playbook for cluster-operator infrastructure
OpenShift Merge Robot 7 년 전
부모
커밋
63dbe26cc7
1개의 변경된 파일21개의 추가작업 그리고 0개의 파일을 삭제
  1. 21 0
      playbooks/cluster-operator/aws/uninstall_infrastructure.yml

+ 21 - 0
playbooks/cluster-operator/aws/uninstall_infrastructure.yml

@@ -0,0 +1,21 @@
+---
+- name: Deprovision infrastructure
+  hosts: localhost
+  tasks:
+  - name: Alert user to variables needed - clusterid
+    debug:
+      msg: "openshift_aws_clusterid={{ openshift_aws_clusterid }}"
+
+  - name: Alert user to variables needed - region
+    debug:
+      msg: "openshift_aws_region={{ openshift_aws_region }}"
+
+- import_playbook: ../../aws/openshift-cluster/uninstall_elb.yml
+
+- import_playbook: ../../aws/openshift-cluster/uninstall_s3.yml
+
+- import_playbook: ../../aws/openshift-cluster/uninstall_sec_group.yml
+
+- import_playbook: ../../aws/openshift-cluster/uninstall_ssh_keypair.yml
+
+- import_playbook: ../../aws/openshift-cluster/uninstall_vpc.yml