selfprivacy-nixos-infect/.drone.yml

103 lines
4.4 KiB
YAML
Raw Permalink Normal View History

2021-12-22 07:37:15 +02:00
kind: pipeline
type: exec
name: default
steps:
- name: deploy
environment:
PASSWORD:
from_secret: HETZNER_TOKEN
2021-12-23 10:33:50 +02:00
DOMAIN:
from_secret: DOMAIN
2022-01-11 09:49:37 +02:00
2021-12-22 07:37:15 +02:00
commands:
2022-01-11 07:10:22 +02:00
- >
curl -X POST
-H "Authorization: Bearer $PASSWORD"
-H "Content-Type: application/json"
-d '{"name":"ci-sibling","server_type":"cx11","start_after_create":true,"image":"ubuntu-20.04", "volumes":[], "networks":[], "user_data":"#cloud-config\\nruncmd:\\n- curl https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect/raw/branch/rolling-testing/nixos-infect | PROVIDER=hetzner NIX_CHANNEL=nixos-21.05 DOMAIN=ruleit.stream LUSER=cicdcicd PASSWORD=cicdcicdpass CF_TOKEN=228337 DB_PASSWORD=228337 API_TOKEN=228337 HOSTNAME=ruleit.stream bash 2>&1 | tee /tmp/infect.log","labels":{},"automount":false, "location":"fsn1"}'
'https://api.hetzner.cloud/v1/servers'
2021-12-23 10:33:50 +02:00
- name: dns
2022-01-11 07:27:10 +02:00
environment:
PASSWORD:
from_secret: HETZNER_TOKEN
CLOUDFLARE_TOKEN:
from_secret: CLOUDFLARE_TOKEN
2022-01-11 15:12:33 +02:00
DOMAIN: ruleit.stream
2022-01-11 07:27:10 +02:00
ZONE_ID:
from_secret: ZONE_ID
2022-01-11 10:14:22 +02:00
2021-12-23 10:33:50 +02:00
commands:
2022-01-11 14:55:47 +02:00
- >
2022-01-11 14:57:36 +02:00
curl -s -H "Authorization: Bearer $PASSWORD" 'https://api.hetzner.cloud/v1/servers' > .machine.json
2022-01-11 14:55:47 +02:00
- >
2022-01-11 15:47:06 +02:00
export machineip=$( for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling" then .servers['$i'].public_net.ipv4.ip else null end' .machine.json; done | grep -v null | sed 's/"//' | sed 's/"//' )
2022-01-11 15:03:30 +02:00
- echo $machineip
2022-01-11 07:10:22 +02:00
- >
2022-01-11 07:34:04 +02:00
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$DOMAIN"
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
2022-01-11 07:10:22 +02:00
-H "Content-Type: application/json"
- >
2022-01-11 16:07:03 +02:00
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
2022-01-11 07:34:04 +02:00
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
2022-01-11 07:10:22 +02:00
-H "Content-Type: application/json"
2022-01-11 15:47:06 +02:00
--data '{"type":"A","name":"@","content":"'"$$machineip"'","ttl":3600,"priority":10,"proxied":false}'
2022-01-11 07:10:22 +02:00
- >
2022-01-11 07:44:26 +02:00
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
2022-01-11 07:10:22 +02:00
-H "Content-Type: application/json"
2022-01-11 16:01:23 +02:00
--data '{"type":"MX","name":"@","content":"'"$$DOMAIN"'","ttl":3600,"priority":10,"proxied":false}'
2022-01-11 07:10:22 +02:00
- >
2022-01-11 07:44:26 +02:00
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
2022-01-11 07:10:22 +02:00
-H "Content-Type: application/json"
--data '{"type":"TXT","name":"_dmarc","content":"v=DMARC1; p=none","ttl":18000,"priority":10,"proxied":false}'
- >
2022-01-11 07:44:26 +02:00
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
2022-01-11 07:10:22 +02:00
-H "Content-Type: application/json"
2022-01-11 16:01:23 +02:00
--data '{"type":"TXT","name":"'"$$DOMAIN"'","content":"v=spf1 a mx ip4:"$$machineip" -all","ttl":18000,"priority":10,"proxied":false}'
- name: sleep
commands:
- sleep 360
- name: test
commands:
2022-01-11 07:10:22 +02:00
- >
curl -H "Authorization: Bearer 228337" 'https://api.ruleit.stream/services/status'
- >
swaks --to ci@ruleit.stream -s selfprivacy.org -tls -au test@selfprivacy.org -ap 228337
2022-01-11 07:10:22 +02:00
- >
curl --user admin:228337 https://cloud.ruleit.stream/ocs/v2.php/apps/serverinfo/api/v1/info?format=json
- echo "blah-blah" > file
- >
curl -T file -u admin:228337 https://cloud.ruleit.stream/remote.php/dav/files/admin/file
- >
2022-01-12 07:06:16 +02:00
curl -u admin:228337 https://cloud.ruleit.stream/remote.php/dav/files/admin/file
2022-02-02 08:28:51 +02:00
- >
curl https://password.ruleit.stream/admin/diagnostics
2022-01-12 07:06:16 +02:00
- name: teardown
2022-01-12 07:13:51 +02:00
environment:
PASSWORD:
from_secret: HETZNER_TOKEN
CLOUDFLARE_TOKEN:
from_secret: CLOUDFLARE_TOKEN
DOMAIN: ruleit.stream
ZONE_ID:
from_secret: ZONE_ID
2022-01-12 07:06:16 +02:00
commands:
- >
2022-01-12 07:16:15 +02:00
curl -s "https://api.hetzner.cloud/v1/servers"
-H "Authorization: Bearer $PASSWORD" > .hetzner_servers.json
2022-01-12 07:06:16 +02:00
- 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')
- >
2022-01-12 07:16:15 +02:00
curl -s -X DELETE "https://api.hetzner.cloud/v1/servers/$machineid"
2022-01-17 09:11:29 +02:00
-H "Authorization: Bearer $PASSWORD"
2022-01-19 22:58:37 +02:00
2022-01-21 07:56:15 +02:00
- name: notify
commands:
2022-01-21 09:25:29 +02:00
- docker run --rm -e PLUGIN_FROM_ADDRESS=test@selfprivacy.org -e PLUGIN_FROM_NAME="SelfPrivacy CI" -e PLUGIN_HOST=selfprivacy.org -e PLUGIN_USERNAME=test@selfprivacy.org -e PLUGIN_PASSWORD=228337 -e DRONE_REPO_OWNER=SelfPrivacy -e DRONE_REPO_NAME=selfprivacy-nixos-infect -e DRONE_COMMIT_BRANCH=development -e DRONE_COMMIT_AUTHOR_EMAIL=illia.chub@selfprivacy.org -v /etc/recipients:/etc/recipients -w $(pwd) drillster/drone-email