blob: e26f6940611bde2601e5e0407a3d580e8d682fcb [file] [log] [blame]
Mohammed Naser388aaaa2023-02-03 12:55:31 -05001# Copyright (c) 2022 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15- name: Terminate project
16 hosts: controllers
17 become: true
18 gather_facts: false
19 vars_prompt:
20 - name: project_id
21 prompt: "Project name"
22 private: false
23 pre_tasks:
24 - name: Ensure that `ospurge` is installed
25 run_once: true
26 ansible.builtin.pip:
27 # https://review.opendev.org/c/x/ospurge/+/872665
28 name: git+https://opendev.org/x/ospurge.git@fef70ecd8b51694d28a16d56fe95139043d972c1#egg=ospurge
29 state: present
30 tasks:
31 - name: Get list of regions with compute service
32 changed_when: false
33 run_once: true
34 ansible.builtin.shell:
35 openstack endpoint list \
36 --service compute \
37 --interface public \
38 --column Region \
39 --format value
40 environment:
41 OS_CLOUD: atmosphere
42 register: _regions
43
44 - name: Run a dry run of ospurge
45 run_once: true
46 ansible.builtin.command:
47 ospurge \
48 --admin-role-name member \
49 --verbose \
50 --purge-project {{ project_id }} \
51 --dry-run
52 environment:
53 OS_AUTH_URL: "https://{{ openstack_helm_endpoints_keystone_api_host }}"
54 OS_USERNAME: "admin-{{ openstack_helm_endpoints_region_name }}"
55 OS_PASSWORD: "{{ openstack_helm_endpoints_keystone_admin_password }}"
56 OS_PROJECT_NAME: admin
57 OS_USER_DOMAIN_NAME: Default
58 OS_PROJECT_DOMAIN_NAME: Default
59 OS_REGION_NAME: "{{ item }}"
60 loop: "{{ _regions.stdout_lines }}"
61 async: 60
62 poll: 0
63 register: _ospurge_dryrun
64
65 - name: Wait for the async task to finish
66 run_once: true
67 ansible.builtin.async_status:
68 jid: "{{ item.ansible_job_id }}"
69 loop: "{{ _ospurge_dryrun.results }}"
70 register: job_result
71 until: job_result.finished
72 retries: 60
73 delay: 1
74
75 - name: Confirm purge, press enter to continue
76 ansible.builtin.pause:
77 prompt: |-
78 {% for region in job_result.results %}
79 {{ region.item.item }}:
80 {{ region.stderr }}
81
82 {% endfor %}
83 Press enter to continue or CTRL+C to cancel
84
85 - name: Run ospurge
86 run_once: true
87 ansible.builtin.command:
88 ospurge \
89 --admin-role-name member \
90 --verbose \
91 --purge-project {{ project_id }} \
92 environment:
93 OS_AUTH_URL: "https://{{ openstack_helm_endpoints_keystone_api_host }}"
94 OS_USERNAME: "admin-{{ openstack_helm_endpoints_region_name }}"
95 OS_PASSWORD: "{{ openstack_helm_endpoints_keystone_admin_password }}"
96 OS_PROJECT_NAME: admin
97 OS_USER_DOMAIN_NAME: Default
98 OS_PROJECT_DOMAIN_NAME: Default
99 OS_REGION_NAME: "{{ item }}"
100 loop: "{{ _regions.stdout_lines }}"
101 async: 600
102 poll: 0
103 register: _ospurge
104
105 - name: Wait for the async task to finish
106 run_once: true
107 ansible.builtin.async_status:
108 jid: "{{ item.ansible_job_id }}"
109 loop: "{{ _ospurge.results }}"
110 loop_control:
111 label: "{{ item.item }}"
112 register: job_result
113 until: job_result.finished
114 retries: 600
115 delay: 1
116
117 - name: Print ospurge output
118 run_once: true
119 ansible.builtin.debug:
Mohammed Naserc14fd112023-02-03 13:30:09 -0500120 msg: "{{ item.stderr_lines }}"
Mohammed Naser388aaaa2023-02-03 12:55:31 -0500121 loop: "{{ job_result.results }}"
Mohammed Naserc14fd112023-02-03 13:30:09 -0500122 loop_control:
123 label: "{{ item.item.item }}"
Mohammed Naser388aaaa2023-02-03 12:55:31 -0500124
125 - name: Delete the OpenStack project
126 run_once: true
127 openstack.cloud.project:
128 name: "{{ project_id }}"
129 state: absent