-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_data.sh
247 lines (205 loc) · 6.97 KB
/
user_data.sh
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#!/usr/bin/env bash
set -eu -o pipefail
# start of pre_script
${pre_script}
# end of pre_script
SOLIDBLOCKS_BASE_URL="${solidblocks_base_url}"
STORAGE_DEVICE_DATA="${storage_device_data}"
# ssl config
SSL_ENABLE="${ssl_enable}"
UFW_DISABLE="${ufw_disable}"
SSL_EMAIL="${ssl_email}"
SSL_DNS_PROVIDER="${ssl_dns_provider}"
SSL_ACME_SERVER="${ssl_acme_server}"
SSL_DOMAINS=""
%{ for domain in ssl_domains }
SSL_DOMAINS="$${SSL_DOMAINS} ${domain}"
%{ endfor }
# ssl dns provider config
%{ for key, value in ssl_dns_provider_config }
export ${key}="${value}"
%{ endfor }
%{~ if storage_device_backup != "" ~}
STORAGE_DEVICE_BACKUP="${storage_device_backup}"
%{~ endif ~}
${solidblocks_cloud_init_bootstrap}
function install_prerequisites {
apt-get install --no-install-recommends -qq -y \
apparmor \
docker.io \
docker-compose \
ufw \
uuid \
unattended-upgrades \
postgresql-client
}
function configure_ufw {
ufw enable
ufw allow ssh
ufw allow 5432
}
function rds_service_systemd_backup_config {
local backup_type="$${1:-}"
cat <<-EOF
[Unit]
Description=full backup for %i
[Service]
Type=oneshot
WorkingDirectory=/opt/dockerfiles/%i
ExecStart=/usr/bin/docker-compose exec -T ${db_instance_name} /rds/bin/backup-$${backup_type}.sh
EOF
}
function rds_service_systemd_backup_timer {
local backup_type="$${1:-}"
local backup_calendar="$${2:-}"
cat <<-EOF
[Unit]
Description=$${backup_type} backup for %i
[Timer]
OnCalendar=$${backup_calendar}
Unit=rds-backup-$${backup_type}@%i.service
[Install]
WantedBy=multi-user.target
EOF
}
function rds_service_systemd_config {
cat <<-EOF
[Unit]
Description=rds instance %i
Requires=docker.service
After=docker.service
[Service]
Restart=always
RestartSec=10s
WorkingDirectory=/opt/dockerfiles/%i
ExecStartPre=/usr/bin/docker-compose down -v
ExecStartPre=/usr/bin/docker-compose rm -fv
ExecStartPre=/usr/bin/docker-compose pull
# Compose up
ExecStart=/usr/bin/docker-compose up
# Compose down, remove containers and volumes
ExecStop=/usr/bin/docker-compose down -v
[Install]
WantedBy=multi-user.target
EOF
}
function lego_run_hook_script {
cat <<-EOF
#!/usr/bin/env bash
set -eu
chown rds:rds "\$${LEGO_CERT_PATH}"
chmod 600 "\$${LEGO_CERT_PATH}"
chown rds:rds "\$${LEGO_CERT_KEY_PATH}"
chmod 600 "\$${LEGO_CERT_KEY_PATH}"
EOF
}
function docker_compose_config {
cat <<-EOF
version: "3"
services:
${db_instance_name}:
image: ghcr.io/pellepelster/solidblocks-rds-postgresql:${postgres_major_version}-${solidblocks_rds_version}
container_name: ${db_instance_name}_postgresql
%{~ if mode != "" ~}
command: ${mode}
%{~ endif ~}
environment:
- "DB_INSTANCE_NAME=${db_instance_name}"
%{~ for database in databases ~}
- "DB_DATABASE_${database.id}=${database.id}"
- "DB_USERNAME_${database.id}=${database.user}"
- "DB_PASSWORD_${database.id}=${database.password}"
%{~ endfor ~}
%{~ if mode != "" ~}
DB_MODE: "${mode}"
%{~ endif ~}
%{~ if db_admin_password != "" ~}
- "DB_ADMIN_PASSWORD=${db_admin_password}"
%{~ endif ~}
%{~ for key, value in environment_variables ~}
- "${key}=${value}"
%{~ endfor ~}
%{~ if db_backup_s3_bucket != "" && db_backup_s3_access_key != "" && db_backup_s3_secret_key != "" ~}
- "DB_BACKUP_S3=1"
- "DB_BACKUP_S3_BUCKET=${db_backup_s3_bucket}"
- "DB_BACKUP_S3_ACCESS_KEY=${db_backup_s3_access_key}"
- "DB_BACKUP_S3_SECRET_KEY=${db_backup_s3_secret_key}"
- "DB_BACKUP_S3_REGION=${db_backup_s3_region}"
- "DB_BACKUP_S3_HOST=${db_backup_s3_host}"
- "DB_BACKUP_S3_RETENTION_FULL_TYPE=${db_backup_s3_retention_full_type}"
- "DB_BACKUP_S3_RETENTION_FULL=${db_backup_s3_retention_full}"
- "DB_BACKUP_S3_RETENTION_DIFF=${db_backup_s3_retention_diff}"
- "DB_RESTORE_PITR=${db_restore_pitr}"
%{~ endif ~}
%{~ if db_backup_gcs_bucket != "" && db_backup_gcs_service_key_base64 != "" ~}
- "DB_BACKUP_GCS=1"
- "DB_BACKUP_GCS_BUCKET=${db_backup_gcs_bucket}"
- "DB_BACKUP_GCS_SERVICE_KEY_BASE64=${db_backup_gcs_service_key_base64}"
%{~ endif ~}
%{~ if storage_device_backup != "" ~}
- "DB_BACKUP_LOCAL=1"
- "DB_BACKUP_LOCAL_RETENTION_FULL_TYPE=${db_backup_local_retention_full_type}"
- "DB_BACKUP_LOCAL_RETENTION_FULL=${db_backup_local_retention_full}"
- "DB_BACKUP_LOCAL_RETENTION_DIFF=${db_backup_local_retention_diff}"
%{~ endif ~}
%{~ if postgres_stop_timeout != "" ~}
- "POSTGRES_STOP_TIMEOUT=${postgres_stop_timeout}"
%{~ endif ~}
%{~ if postgres_extra_config != "" ~}
- "DB_POSTGRES_EXTRA_CONFIG=${postgres_extra_config}"
%{~ endif ~}
%{~ if backup_encryption_passphrase != "" ~}
- "DB_BACKUP_ENCRYPTION_PASSPHRASE=${backup_encryption_passphrase}"
%{~ endif ~}
ports:
- "%{~ if network_ip != "" ~}${network_ip}:%{~ endif ~}5432:5432"
volumes:
- "/storage/data:/storage/data"
%{~ if storage_device_backup != "" ~}
- "/storage/backup:/storage/backup"
%{~ endif ~}
%{~ if ssl_enable ~}
- "/storage/data/ssl/certificates/${ssl_domains[0]}.crt:/rds/ssl/server.crt"
- "/storage/data/ssl/certificates/${ssl_domains[0]}.key:/rds/ssl/server.key"
%{~ endif ~}
EOF
}
groupadd --gid 10000 rds
useradd --gid rds --uid 10000 rds --create-home
storage_mount "$${STORAGE_DEVICE_DATA}" "/storage/data"
%{~ if storage_device_backup != "" ~}
storage_mount "$${STORAGE_DEVICE_BACKUP}" "/storage/backup"
%{~ endif ~}
chown -R rds:rds "/storage"
install_prerequisites
if [[ "$${UFW_DISABLE}" != "true" ]]; then
configure_ufw
fi
if [[ "$${SSL_ENABLE}" == "true" ]]; then
lego_run_hook_script > ~rds/lego_run_hook.sh
chmod +x ~rds/lego_run_hook.sh
lego_setup_dns "/storage/data/ssl" "$${SSL_EMAIL}" "$${SSL_DOMAINS}" "$${SSL_DNS_PROVIDER}" "$(readlink -f ~rds/lego_run_hook.sh)" "$${SSL_ACME_SERVER}"
fi
mkdir -p "/opt/dockerfiles/${db_instance_name}"
docker_compose_config > "/opt/dockerfiles/${db_instance_name}/docker-compose.yml"
rds_service_systemd_config > /etc/systemd/system/rds@.service
rds_service_systemd_backup_config "full" > /etc/systemd/system/rds-backup-full@.service
rds_service_systemd_backup_timer "full" "${backup_full_calendar}" > /etc/systemd/system/rds-backup-full@.timer
rds_service_systemd_backup_config "incr" > /etc/systemd/system/rds-backup-incr@.service
rds_service_systemd_backup_timer "incr" "${backup_incr_calendar}" > /etc/systemd/system/rds-backup-incr@.timer
systemctl daemon-reload
systemctl enable rds@${db_instance_name}
systemctl start rds@${db_instance_name}
systemctl enable rds-backup-full@${db_instance_name}.timer
systemctl start rds-backup-full@${db_instance_name}.timer
systemctl enable rds-backup-incr@${db_instance_name}.timer
systemctl start rds-backup-incr@${db_instance_name}.timer
# enable automatic system updates
systemctl start unattended-upgrades
systemctl enable unattended-upgrades
# start of extra_user_data
${extra_user_data}
# end of extra_user_data
# start of post_script
${post_script}
# end of post_script