blob: cdd357ed9bba5dffe753e248b0ba9b18f5d379e3 (
plain) (
blame)
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
|
#!/usr/bin/env nix-shell
#!nix-shell -i bash ../../shell.nix
# shellcheck shell=bash
set -Eeuo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
cd ../../
VPS_COMMIT_SHA="$(git rev-parse HEAD)"
export VPS_COMMIT_SHA
echo "Initializing Terraform..."
ln -s "$(command -v terraform-godaddy)" terraform-provider-godaddy
terraform --version
terraform init
echo "Done."
setup_borg_files() {
local -r template_file="${1}"
local -r destination_name="${2}"
scp ./secrets/borg/borg-remote.pub "$TLD":/root/.ssh/id_rsa.pub
scp ./secrets/borg/borg-remote "$TLD":/root/.ssh/id_rsa
scp ./secrets/borg/known-hosts.txt "$TLD":/root/.ssh/known_hosts
ssh "$TLD" 'chmod 400 /root/.ssh/id_rsa'
# shellcheck disable=SC2029
envsubst < "${template_file}" | ssh "$TLD" "cat > /home/vps/${destination_name} && chmod +x /home/vps/${destination_name}"
# shellcheck disable=SC2029
ssh "$TLD" "chmod +x /home/vps/${destination_name}"
}
echo "Shutting down running containers and backing up data..."
ssh "$TLD" "cd /home/vps/ && docker-compose down"
setup_borg_files ./scripts/box/create-backup.env.sh create-backup.sh
ssh "$TLD" /home/vps/create-backup.sh || echo "FAILED TO CREATE BACKUP."
echo "Done."
if [[ "${DESTROY_VOLUME:-}" != "" ]]; then
echo "Destroying existing infrastructure..."
terraform destroy -input=false -auto-approve
else
echo "Skipping explicit intentional destruction of existing infrastructure..."
fi
echo "Done."
echo "Running 'terraform plan' and storing the planfile..."
mkdir -p "../vps-state/secrets/plan-files/"
PLAN_FILE_NAME="$(date -Iseconds)-$VPS_COMMIT_SHA.tfplan"
PLAN_FILE_PATH="../vps-state/secrets/plan-files/$PLAN_FILE_NAME"
terraform plan -input=false -out="$PLAN_FILE_PATH"
pushd ../vps-state/
git add "secrets/plan-files/$PLAN_FILE_NAME"
git commit -m "CI: add .tfplan plan file for CI run $VPS_COMMIT_SHA"
git push origin master
popd
echo "Done."
echo "Running 'terraform apply'..."
terraform apply -input=false -auto-approve "$PLAN_FILE_PATH"
echo "Done."
echo "Storing .tfstate file..."
pushd ../vps-state/
git add secrets/terraform.tfstate secrets/terraform.tfstate.backup
git commit -m "CI: update Terraform .tfstate files for CI run $VPS_COMMIT_SHA"
git push origin master
popd
echo "Done."
echo "Running the Ansible playbook..."
ansible-playbook provision.yaml
echo "Done."
echo "Locking git-crypt repositories back..."
git crypt lock
pushd ../vps-state/
git crypt lock
popd
echo "Done."
|