Skip to content
Snippets Groups Projects
Commit e49a63ca authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-inventories/lakedrops#93 Add borgmatic compact cron job once a month

parent 30d44740
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ DeployDataCore:
# Create ./borgconfig/.env ./borgconfig/crontab.txt ./borgconfig/config.yaml
- export HEALTHCHECK1=$(python3 /usr/local/bin/healthchecks.py get_curl_for_ping ${HEALTHCHECK_URL} ${HEALTHCHECK_API_KEY} --host=${HOST} --channel=${HEALTHCHECK_API_CHANNELS} --jobname="Borg Backup datacore_${CI_PROJECT_ID}_${CI_COMMIT_REF_NAME}" --schedule="55 */6 * * *")
- export HEALTHCHECK2=$(python3 /usr/local/bin/healthchecks.py get_curl_for_ping ${HEALTHCHECK_URL} ${HEALTHCHECK_API_KEY} --host=${HOST} --channel=${HEALTHCHECK_API_CHANNELS} --jobname="Borg Backup Check datacore_${CI_PROJECT_ID}_${CI_COMMIT_REF_NAME}" --schedule="30 23 1 * *")
- export HEALTHCHECK3=$(python3 /usr/local/bin/healthchecks.py get_curl_for_ping ${HEALTHCHECK_URL} ${HEALTHCHECK_API_KEY} --host=${HOST} --channel=${HEALTHCHECK_API_CHANNELS} --jobname="Borg Backup Compact datacore_${CI_PROJECT_ID}_${CI_COMMIT_REF_NAME}" --schedule="30 23 5 * *")
- export EXTERNALREPO=
- if [[ "$CI_COMMIT_REF_NAME" == "develop" ]]; then export EXTERNALREPO=" - ${DATACORE_BORGREPO}"; fi
- curl --silent --retry 2 https://gitlab.lakedrops.com/gitlab-ci-cd/general/-/raw/main/templates/datacore/borg-config.yaml | envsubst > borgconfig/config.yaml
......
55 */6 * * * /usr/local/bin/borgmatic --stats -v 0 2>&1 && ${HEALTHCHECK1}
30 23 1 * * /usr/local/bin/borgmatic check -v 0 2>&1 && ${HEALTHCHECK2}
30 23 5 * * /usr/local/bin/borgmatic compact -v 0 2>&1 && ${HEALTHCHECK3}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment