2024-03-24 17:16:20 +00:00
|
|
|
name: Arrow
|
|
|
|
|
2024-03-30 18:32:30 +00:00
|
|
|
run-name: Arrow - ${{ inputs.rebuild && 'Rebuild and ' || '' }}${{ inputs.action == 'create' && 'Create' || ( inputs.action == 'destroy' && 'Destroy' || 'No Action' ) }}
|
2024-03-30 17:07:06 +00:00
|
|
|
|
2024-03-24 17:16:20 +00:00
|
|
|
env:
|
2024-04-14 12:08:57 +00:00
|
|
|
TERRAFORM_DIRECTORY: hosts/arrow/vultr
|
2024-03-24 17:16:20 +00:00
|
|
|
DEPLOY_IDENTITY_BASE64: ${{ secrets.DEPLOY_IDENTITY_BASE64 }}
|
|
|
|
ARROW_IDENTITY_BASE64: ${{ secrets.ARROW_IDENTITY_BASE64 }}
|
|
|
|
CLOUDFLARE_R2_ENDPOINT: "${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com"
|
2024-03-24 18:29:51 +00:00
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_SECRET_KEY }}
|
2024-03-24 19:06:38 +00:00
|
|
|
AWS_DEFAULT_REGION: auto
|
2024-03-24 18:36:23 +00:00
|
|
|
AWS_ENDPOINT_URL_S3: "https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com"
|
2024-03-24 17:16:20 +00:00
|
|
|
TF_VAR_vultr_api_key: ${{ secrets.VULTR_API_KEY }}
|
2024-03-30 19:47:43 +00:00
|
|
|
ZONE_NAME: masu.rs
|
|
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
|
|
CLOUDFLARE_ZONE_ID: ${{ secrets.CLOUDFLARE_ZONE_ID }}
|
2024-03-24 17:16:20 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
rebuild:
|
2024-03-24 18:00:38 +00:00
|
|
|
type: boolean
|
2024-03-24 17:16:20 +00:00
|
|
|
default: false
|
|
|
|
action:
|
|
|
|
type: choice
|
|
|
|
required: true
|
|
|
|
default: create
|
|
|
|
options:
|
|
|
|
- create
|
|
|
|
- destroy
|
2024-03-30 17:07:06 +00:00
|
|
|
- nothing
|
2024-03-30 18:30:02 +00:00
|
|
|
plan:
|
|
|
|
type: choice
|
|
|
|
required: false
|
|
|
|
options:
|
|
|
|
- vc2-1c-1gb # 25 GB / $5
|
|
|
|
- vc2-1c-2gb # 55 GB / $10 (default)
|
|
|
|
- vc2-2c-2gb # 65 GB / $15
|
|
|
|
- vc2-2c-4gb # 80 GB / $20
|
|
|
|
- vc2-4c-8gb # 160 GB / $40
|
|
|
|
- vc2-6c-16gb # 320 GB / $80
|
2024-03-24 17:16:20 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-deploy:
|
|
|
|
name: Build and Deploy
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repo Code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
# Enable access to KVM, required to build an image
|
|
|
|
- name: Enable KVM group perms
|
|
|
|
if: inputs.rebuild && inputs.action != 'destroy'
|
|
|
|
run: |
|
|
|
|
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
|
|
|
|
sudo udevadm control --reload-rules
|
|
|
|
sudo udevadm trigger --name-match=kvm
|
|
|
|
|
|
|
|
# Install Nix
|
|
|
|
- name: Install Nix
|
|
|
|
if: inputs.rebuild && inputs.action != 'destroy'
|
|
|
|
uses: cachix/install-nix-action@v17
|
|
|
|
|
|
|
|
# Build the image
|
|
|
|
- name: Build Image
|
|
|
|
if: inputs.rebuild && inputs.action != 'destroy'
|
2024-04-14 12:28:39 +00:00
|
|
|
run: nix build .#arrow
|
2024-03-24 17:16:20 +00:00
|
|
|
|
|
|
|
- name: Upload Image to S3
|
|
|
|
if: inputs.rebuild && inputs.action != 'destroy'
|
|
|
|
run: |
|
|
|
|
aws s3 cp \
|
|
|
|
result/iso/nixos.iso \
|
|
|
|
s3://noahmasur-arrow-images/arrow.iso \
|
|
|
|
--endpoint-url "https://${{ env.CLOUDFLARE_R2_ENDPOINT }}"
|
|
|
|
|
|
|
|
# Installs the Terraform binary and some other accessory functions.
|
|
|
|
- name: Setup Terraform
|
|
|
|
uses: hashicorp/setup-terraform@v2
|
|
|
|
|
|
|
|
# Checks whether Terraform is formatted properly. If this fails, you
|
|
|
|
# should install the pre-commit hook.
|
|
|
|
- name: Check Formatting
|
2024-03-24 18:24:09 +00:00
|
|
|
working-directory: ${{ env.TERRAFORM_DIRECTORY }}
|
2024-03-24 17:16:20 +00:00
|
|
|
run: |
|
|
|
|
terraform fmt -no-color -check -diff -recursive
|
|
|
|
|
|
|
|
# Connects to remote state backend and download providers.
|
|
|
|
- name: Terraform Init
|
|
|
|
working-directory: ${{ env.TERRAFORM_DIRECTORY }}
|
2024-03-24 18:36:23 +00:00
|
|
|
run: terraform init
|
2024-03-24 17:16:20 +00:00
|
|
|
|
|
|
|
# Deploys infrastructure or changes to infrastructure.
|
|
|
|
- name: Terraform Apply
|
|
|
|
if: inputs.action == 'create'
|
|
|
|
working-directory: ${{ env.TERRAFORM_DIRECTORY }}
|
2024-03-30 18:30:02 +00:00
|
|
|
env:
|
|
|
|
TF_VAR_vultr_plan: ${{ inputs.plan }}
|
2024-03-24 17:16:20 +00:00
|
|
|
run: |
|
|
|
|
terraform apply \
|
|
|
|
-auto-approve \
|
|
|
|
-input=false
|
|
|
|
|
|
|
|
# Removes infrastructure.
|
|
|
|
- name: Terraform Destroy
|
|
|
|
if: inputs.action == 'destroy'
|
|
|
|
working-directory: ${{ env.TERRAFORM_DIRECTORY }}
|
|
|
|
run: |
|
|
|
|
terraform destroy \
|
|
|
|
-auto-approve \
|
|
|
|
-input=false
|
|
|
|
|
|
|
|
- name: Get Host IP
|
|
|
|
if: inputs.action == 'create'
|
|
|
|
id: host
|
|
|
|
working-directory: ${{ env.TERRAFORM_DIRECTORY }}
|
2024-03-24 18:55:17 +00:00
|
|
|
run: terraform output -raw host_ip
|
2024-03-24 17:16:20 +00:00
|
|
|
|
|
|
|
- name: Wait on SSH
|
2024-03-24 19:34:12 +00:00
|
|
|
if: inputs.action == 'create'
|
|
|
|
run: |
|
|
|
|
for i in $(seq 1 15); do
|
|
|
|
if $(nc -z -w 3 ${{ steps.host.outputs.stdout }} 22); then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
sleep 10
|
|
|
|
done
|
2024-03-24 17:16:20 +00:00
|
|
|
|
|
|
|
- name: Write Identity Keys to Files
|
|
|
|
if: inputs.action == 'create'
|
|
|
|
run: |
|
|
|
|
echo "${{ env.DEPLOY_IDENTITY_BASE64 }}" | base64 -d > deploy_ed25519
|
2024-03-24 22:51:35 +00:00
|
|
|
chmod 0600 deploy_ed25519
|
2024-03-24 17:16:20 +00:00
|
|
|
echo "${{ env.ARROW_IDENTITY_BASE64 }}" | base64 -d > arrow_ed25519
|
2024-03-24 22:51:35 +00:00
|
|
|
chmod 0600 arrow_ed25519
|
2024-03-24 17:16:20 +00:00
|
|
|
|
|
|
|
- name: Copy Identity File to Host
|
|
|
|
if: inputs.action == 'create'
|
2024-03-24 19:04:40 +00:00
|
|
|
run: |
|
2024-03-24 22:50:23 +00:00
|
|
|
ssh -i deploy_ed25519 -o StrictHostKeyChecking=accept-new noah@${{ steps.host.outputs.stdout }} 'mkdir -pv .ssh'
|
2024-03-24 19:04:40 +00:00
|
|
|
scp -i deploy_ed25519 arrow_ed25519 noah@${{ steps.host.outputs.stdout }}:~/.ssh/id_ed25519
|
2024-03-30 19:47:43 +00:00
|
|
|
|
|
|
|
- name: Wipe Records
|
|
|
|
if: ${{ inputs.action == 'destroy' }}
|
|
|
|
run: |
|
|
|
|
RECORD_ID=$(curl --request GET \
|
|
|
|
--url https://api.cloudflare.com/client/v4/zones/${{ env.CLOUDFLARE_ZONE_ID }}/dns_records \
|
|
|
|
--header 'Content-Type: application/json' \
|
|
|
|
--header "Authorization: Bearer ${{ env.CLOUDFLARE_API_TOKEN }}" | jq -r '.result[] | select(.name == "transmission.${{ env.ZONE_NAME }}") | .id')
|
|
|
|
curl --request DELETE \
|
|
|
|
--url https://api.cloudflare.com/client/v4/zones/${{ env.CLOUDFLARE_ZONE_ID }}/dns_records/${RECORD_ID} \
|
|
|
|
--header 'Content-Type: application/json' \
|
|
|
|
--header "Authorization: Bearer ${{ env.CLOUDFLARE_API_TOKEN }}"
|