2 Commits

Author SHA1 Message Date
5f9cee2d25 Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.4
All checks were successful
lint-test-helm / helm-lint (pull_request) Successful in 9s
2025-07-09 23:23:45 +00:00
ccb9c5d3f0 fix script
All checks were successful
lint-test-helm / helm-lint (push) Successful in 9s
renovate / renovate (push) Successful in 1m30s
2025-07-09 18:22:25 -05:00
2 changed files with 8 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ komodo:
main: main:
image: image:
repository: ghcr.io/moghtech/komodo-core repository: ghcr.io/moghtech/komodo-core
tag: 1.17.5 tag: 1.18.4
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
env: env:
- name: COMPOSE_LOGGING_DRIVER - name: COMPOSE_LOGGING_DRIVER

View File

@@ -223,18 +223,17 @@ backup:
args: args:
- -ec - -ec
- | - |
export ONE_WEEK_AGO=$(date -d @$(( $(date +%s) - 604800 )) +%Y-%m-%d\ %H:%M:%S); export DATE_RANGE=$(date -d @$(( $(date +%s) - 1209600 )) +%Y%m%d);
export TWO_WEEK_AGO=$(date -d @$(( $(date +%s) - 1209600 )) +%Y-%m-%d\ %H:%M:%S); export FILE_MATCH="$BUCKET/cl01tl/gitea-backup-$DATE_RANGE-09-00.zip"
export TIME_RANGE="$TWO_WEEK_AGO"
echo ">> Running S3 prune for Gitea backup repository" echo ">> Running S3 prune for Gitea backup repository"
echo ">> Backups prior to '$TIME_RANGE' will be removed" echo ">> Backups prior to '$DATE_RANGE' will be removed"
echo ">> File list:" echo ">> File list:"
s3cmd ls -v ${BUCKET}/cl01tl/ s3cmd ls ${BUCKET}/cl01tl/
echo ">> Deleting ..." echo ">> Deleting ..."
s3cmd ls -v ${BUCKET}/cl01tl/ | s3cmd ls ${BUCKET}/cl01tl/ |
awk -v time_range="$TIME_RANGE" '$1 < time_range {print $4}' | awk file_match="$FILE_MATCH" '$4 < file_match {print $4}' |
while read file; while read file;
do s3cmd del -v "$file"; do s3cmd del "$file";
echo ">> Deleted $file"; echo ">> Deleted $file";
done; done;
echo ">> Completed S3 prune for Gitea backup repository" echo ">> Completed S3 prune for Gitea backup repository"