forked from cpanel/elevate
-
Notifications
You must be signed in to change notification settings - Fork 0
313 lines (289 loc) · 10.9 KB
/
openstack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
on:
push:
branches:
- "main"
- '!docs'
tags-ignore:
- "*"
pull_request:
workflow_dispatch:
env:
TF_VAR_application_credential_id: ${{ secrets.OS_APPLICATION_CREDENTIAL_ID }}
TF_VAR_application_credential_secret: ${{ secrets.OS_APPLICATION_CREDENTIAL_SECRET }}
TF_VAR_ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
TF_VAR_ssh_public_key: ${{ secrets.SSH_PUBLIC_KEY }}
TF_VAR_os_auth_region: ${{ secrets.OS_AUTH_REGION }}
TF_VAR_os_auth_url: ${{ secrets.OS_AUTH_URL }}
TF_VAR_os_interface: ${{ secrets.OS_INTERFACE }}
TF_VAR_os_project_domain_name: ${{ secrets.OS_PROJECT_DOMAIN_NAME }}
TF_VAR_os_password: ${{ secrets.OS_PASSWORD }}
TF_VAR_os_project_id: ${{ secrets.OS_PROJECT_ID }}
TF_VAR_os_project_domain_id: ${{ secrets.OS_PROJECT_DOMAIN_ID }}
TF_VAR_os_project_name: ${{ secrets.OS_PROJECT_NAME }}
TF_VAR_os_region_name: ${{ secrets.OS_REGION_NAME }}
TF_VAR_os_username: ${{ secrets.OS_USERNAME }}
tf_working_directory: "./.github/workflows/openstack/terraform"
jobs:
terraform_openstack_create:
runs-on: self-hosted
defaults:
run:
working-directory: "./.github/workflows/openstack/terraform"
outputs:
VM_IP: ${{ steps.get_vm_ip.outputs.VM_IP }}
steps:
- uses: actions/checkout@v4
- name: Terraform fmt
id: fmt
run: |
terraform fmt -check
continue-on-error: true
- name: DEBUGVAR
id: debugvar
run: |
env | awk 'tolower($0)~/auth|project_name/'
- name: Terraform Init
id: init
run: |
terraform init
- name: Terraform Plan
id: plan
run: |
terraform plan -no-color
- name: Terraform Apply
id: apply
run: |
terraform apply -no-color -auto-approve
- name: Terraform Output File Create
run: |
terraform output -json > ${{ github.workspace }}/tf.out.json
- name: Get VM IP from Terraform Output File
id: get_vm_ip
run: |
echo "VM_IP=$(jq -r '.address.value' ${{ github.workspace }}/tf.out.json)" >> "$GITHUB_OUTPUT"
echo "$(jq -r '.address.value' ${{ github.workspace }}/tf.out.json)" > vm_ip
- name: Export VM_IP to Env
env:
VM_IP: ${{ steps.get_vm_ip.outputs.VM_IP }}
run: echo "The VM IP is $VM_IP"
- name: Upload JSON Output
uses: actions/upload-artifact@v4
with:
name: terraform_output_json
path: ${{ github.workspace }}/tf.out.json
overwrite: true
clone_elevate_repo:
runs-on: self-hosted
needs: terraform_openstack_create
outputs:
VM_IP: ${{ needs.terraform_openstack_create.outputs.VM_IP }}
steps:
- name: Checkout Repo and Commit
if: github.event_name != 'pull_request'
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.terraform_openstack_create.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
script: |
cd /opt
echo "[DEBUG]: ${{ github.ref }}"
echo "[DEBUG]: ${{ github.ref_name }}"
git clone --depth 1 --branch ${{ github.ref_name }} https://github.com/${{ github.repository }}.git
cd /opt/elevate
git status
- name: Checking out Repo and Commit
if: github.event_name == 'pull_request'
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.terraform_openstack_create.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
script: |
cd /opt
echo "[DEBUG]: ${{ github.ref }}"
echo "[DEBUG]: ${{ github.head_ref }}"
git clone --depth 1 --branch ${{ github.head_ref }} https://github.com/${{ github.repository }}.git
cd /opt/elevate
git status
start_elevate:
runs-on: self-hosted
needs: clone_elevate_repo
outputs:
VM_IP: ${{ needs.clone_elevate_repo.outputs.VM_IP }}
steps:
- name: Starting Elevate
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.clone_elevate_repo.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
script: |
cp -pv /opt/elevate/elevate-cpanel /scripts/elevate-cpanel
cp -pv /opt/elevate/.github/workflows/openstack/status_marker.sh /scripts/status_marker.sh
cp -pv /opt/elevate/.github/workflows/openstack/reboot_watch.sh /scripts/reboot_watch.sh
chmod -v +x /scripts/elevate-cpanel
/usr/local/cpanel/cpkeyclt
/scripts/elevate-cpanel --non-interactive --start &
/scripts/elevate-cpanel --log &
/scripts/elevate-cpanel --log | awk '/Rebooting into stage 2 of 5/ { print | "exit" }'
wait_for_stage_2_reboot:
runs-on: self-hosted
needs: start_elevate
outputs:
VM_IP: ${{ needs.start_elevate.outputs.VM_IP }}
steps:
- name: Wait For VM to Come Back From Stage 2 Reboot
working-directory: "./.github/workflows/openstack/"
run: |
./ssh_retry.sh ${{ needs.start_elevate.outputs.VM_IP }}
watch_for_stage_3_reboot:
runs-on: self-hosted
needs: wait_for_stage_2_reboot
outputs:
VM_IP: ${{ needs.wait_for_stage_2_reboot.outputs.VM_IP }}
steps:
- name: Monitor Elevate for Stage 3 Reboot
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.wait_for_stage_2_reboot.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
timeout: 60m
command_timeout: 20m
debug: true
script: |
/scripts/status_marker.sh 3
/scripts/elevate-cpanel --log &
REGEX="Rebooting into stage 3 of 5" RETVAL=1 /scripts/reboot_watch.sh
wait_for_stage_3_reboot:
runs-on: self-hosted
needs: watch_for_stage_3_reboot
outputs:
VM_IP: ${{ needs.watch_for_stage_3_reboot.outputs.VM_IP }}
steps:
- name: Wait For VM to Come Back From Stage 3 Reboot
working-directory: "./.github/workflows/openstack/"
run: |
./ssh_retry.sh ${{ needs.watch_for_stage_3_reboot.outputs.VM_IP }}
watch_for_stage_4_reboot:
runs-on: self-hosted
needs: wait_for_stage_3_reboot
outputs:
VM_IP: ${{ needs.wait_for_stage_3_reboot.outputs.VM_IP }}
steps:
- name: Monitor Elevate for Stage 4 Reboot
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.wait_for_stage_3_reboot.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
timeout: 30m
command_timeout: 20m
script: |
/scripts/status_marker.sh 4
/scripts/elevate-cpanel --log &
REGEX="Rebooting into stage 4 of 5" RETVAL=1 /scripts/reboot_watch.sh
wait_for_stage_4_reboot:
runs-on: self-hosted
needs: watch_for_stage_4_reboot
outputs:
VM_IP: ${{ needs.watch_for_stage_4_reboot.outputs.VM_IP }}
steps:
- name: Wait For VM to Come Back From Stage 4 Reboot
working-directory: "./.github/workflows/openstack/"
run: |
./ssh_retry.sh ${{ needs.watch_for_stage_4_reboot.outputs.VM_IP }}
watch_for_stage_5_reboot:
runs-on: self-hosted
needs: wait_for_stage_4_reboot
outputs:
VM_IP: ${{ needs.wait_for_stage_4_reboot.outputs.VM_IP }}
steps:
- name: Monitor Elevate for Stage 5 Reboot
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.wait_for_stage_4_reboot.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
timeout: 30m
command_timeout: 20m
script: |
/scripts/status_marker.sh 5
/scripts/elevate-cpanel --log &
REGEX="Rebooting into stage 5 of 5" RETVAL=1 /scripts/reboot_watch.sh
wait_for_stage_5_reboot:
runs-on: self-hosted
needs: watch_for_stage_5_reboot
outputs:
VM_IP: ${{ needs.watch_for_stage_5_reboot.outputs.VM_IP }}
steps:
- name: Wait For VM to Come Back From Stage 5 Reboot
working-directory: "./.github/workflows/openstack/"
run: |
./ssh_retry.sh ${{ needs.watch_for_stage_5_reboot.outputs.VM_IP }}
watch_for_final_reboot:
runs-on: self-hosted
needs: wait_for_stage_5_reboot
outputs:
VM_IP: ${{ needs.wait_for_stage_5_reboot.outputs.VM_IP }}
steps:
- name: Watch Elevate for Final Reboot
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.wait_for_stage_5_reboot.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
timeout: 30m
command_timeout: 20m
script: |
/scripts/elevate-cpanel --log &
REGEX="Doing final reboot" RETVAL=1 /scripts/reboot_watch.sh
wait_for_final_reboot:
runs-on: self-hosted
needs: watch_for_final_reboot
outputs:
VM_IP: ${{ needs.watch_for_final_reboot.outputs.VM_IP }}
steps:
- name: Wait For VM to Come Back From Final Reboot
working-directory: "./.github/workflows/openstack/"
run: |
./ssh_retry.sh ${{ needs.watch_for_final_reboot.outputs.VM_IP }}
verify_upgraded_os:
runs-on: self-hosted
needs: wait_for_final_reboot
outputs:
VM_IP: ${{ needs.wait_for_final_reboot.outputs.VM_IP }}
steps:
- name: Verify End Result Integration Tests
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ needs.wait_for_final_reboot.outputs.VM_IP }}
username: 'root'
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: '22'
timeout: 5m
command_timeout: 1m
script: |
/usr/local/cpanel/3rdparty/bin/prove -lvm /opt/elevate/t/integration/*.t
terraform_openstack_destroy:
runs-on: self-hosted
needs: verify_upgraded_os
defaults:
run:
working-directory: "./.github/workflows/openstack/terraform"
steps:
- name: Download Terraform Output JSON
uses: actions/download-artifact@v4
with:
name: terraform_output_json
path: ${{ github.workspace }}/
- name: Destroy OpenStack VM
run: terraform destroy -no-color -auto-approve