tangled
alpha
login
or
join now
sans-self.org
/
infrastructure
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
Fixed shell linting issue
sans-self.org
3 weeks ago
4a7feb33
a24c4716
1/1
validate.yml
success
28s
+3
-2
2 changed files
expand all
collapse all
unified
split
CHANGELOG.md
k8s
shared
backup.sh
+1
CHANGELOG.md
···
25
25
- Add Tangled knot with Spindle CI/CD to k3s cluster (#1)
26
26
27
27
### Fixed
28
28
+
- Fix shellcheck SC2086 warnings in backup.sh (#62)
28
29
- Fix Spindle CI runner provisioning for all nodes (#61)
29
30
- Fix knot post-receive hooks not being executable (#54)
30
31
- Remove deleted pds-test subdomain from TLS certificate (#48)
+2
-2
k8s/shared/backup.sh
···
35
35
36
36
rclone copyto "/tmp/${name}-${TIMESTAMP}.${ext}" \
37
37
":s3:${BACKUP_BUCKET}/${BACKUP_PREFIX}/db/${name}-${TIMESTAMP}.${ext}" \
38
38
-
${S3_OPTS}
38
38
+
"${S3_OPTS}"
39
39
echo "backed up: ${name}-${TIMESTAMP}.${ext}"
40
40
done
41
41
···
44
44
[ -z "$src" ] && continue
45
45
rclone copy "$src" \
46
46
":s3:${BACKUP_BUCKET}/${BACKUP_PREFIX}/${dest}" \
47
47
-
${S3_OPTS}
47
47
+
"${S3_OPTS}"
48
48
echo "copied: ${dest}"
49
49
done
50
50