mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-22 12:01:27 +00:00
drone: delete all 4 used machines
This commit is contained in:
parent
4d62fb57b8
commit
5da925ea66
16
.drone.yml
16
.drone.yml
|
@ -35,7 +35,7 @@ steps:
|
||||||
from_secret: ZONE_ID
|
from_secret: ZONE_ID
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
# Read all available machines and export IP of 'ci-sibling'
|
# Read all available machines and export IP of 'ci-sibling'
|
||||||
# Create DNS entires for main domain and subdomains
|
# Create DNS entires for main domain and subdomains
|
||||||
- >
|
- >
|
||||||
curl -s -H "Authorization: Bearer $PASSWORD" 'https://api.hetzner.cloud/v1/servers' > .machine.json
|
curl -s -H "Authorization: Bearer $PASSWORD" 'https://api.hetzner.cloud/v1/servers' > .machine.json
|
||||||
|
@ -45,7 +45,7 @@ steps:
|
||||||
- >
|
- >
|
||||||
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$DOMAIN"
|
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$DOMAIN"
|
||||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||||
-H "Content-Type: application/json"
|
-H "Content-Type: application/json"
|
||||||
- >
|
- >
|
||||||
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
||||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||||
|
@ -121,6 +121,18 @@ 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')
|
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 DELETE "https://api.hetzner.cloud/v1/servers/$machineid" -H "Authorization: Bearer $PASSWORD"
|
||||||
|
- >
|
||||||
|
export machineid=$( for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling2" 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"
|
||||||
|
- >
|
||||||
|
export machineid=$( for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling3" 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"
|
||||||
|
- >
|
||||||
|
export machineid=$( for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling4" 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"
|
||||||
- >
|
- >
|
||||||
json=$(curl -X GET "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records" -H "Authorization: Bearer $CLOUDFLARE_TOKEN" -H "Content-Type: application/json")
|
json=$(curl -X GET "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records" -H "Authorization: Bearer $CLOUDFLARE_TOKEN" -H "Content-Type: application/json")
|
||||||
- >
|
- >
|
||||||
|
|
Loading…
Reference in a new issue