mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-25 21:11:27 +00:00
Added server teardown phase
This commit is contained in:
parent
2329706eb7
commit
9907911e48
24
.drone.yml
24
.drone.yml
|
@ -93,26 +93,4 @@ steps:
|
|||
- export machineid=$( for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling" then .servers['$i'].id else null end' .hetzner_servers.json; done | grep -v null | sed 's/"//g')
|
||||
- >
|
||||
curl -s -X DELETE "https://api.hetzner.cloud/v1/servers/$machineid"
|
||||
-H "Authorization: Bearer $PASSWORD"
|
||||
- >
|
||||
curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||
-H "Content-Type: application/json" > .dns_records.json
|
||||
- >
|
||||
for i in {0..24}
|
||||
do
|
||||
jq '.result['$i'].id' .dns_records.json
|
||||
done | grep -v null | sed 's/"//g' > .records
|
||||
- export recordIDs=()
|
||||
- >
|
||||
while IFS=read -r line
|
||||
do
|
||||
recordIDs+=("$line")
|
||||
done < .records
|
||||
- >
|
||||
for recordid in "${recordIDs[@]}"
|
||||
do
|
||||
curl -s -X DELETE "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records/$recordid"
|
||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||
-H "Content-Type: application/json"
|
||||
done
|
||||
-H "Authorization: Bearer $PASSWORD"
|
Loading…
Reference in a new issue