Compare commits

...

3 Commits

Author SHA1 Message Date
renovate-bot 584237dd59 chore(deps): update helm/chart-testing-action action to v2.8.0 2026-04-26 19:13:23 +00:00
alexlebens 73779ad42b feat: add include and exclude to prune
lint-and-test / lint-helm (push) Successful in 14s
lint-and-test / chart-testing (push) Successful in 25s
release-charts-rclone-bucket / release (push) Successful in 20s
renovate / renovate (push) Successful in 57s
2026-04-26 14:12:11 -05:00
alexlebens 96cc6a8038 feat: add age to backup
lint-and-test / lint-helm (push) Successful in 17s
release-charts-rclone-bucket / release (push) Successful in 30s
renovate / renovate (push) Successful in 50s
lint-and-test / chart-testing (push) Successful in 5m45s
2026-04-26 13:57:24 -05:00
5 changed files with 18 additions and 4 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ jobs:
python-version: '3.14'
- name: Set up Chart Testing
uses: helm/chart-testing-action@v2.7.0
uses: helm/chart-testing-action@v2.8.0
with:
yamale_version: "6.0.0"
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v2
name: rclone-bucket
version: 0.2.0
version: 0.4.0
description: Rclone CronJob to replicate buckets
keywords:
- rclone-bucket
+2 -2
View File
@@ -1,6 +1,6 @@
# rclone-bucket
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![AppVersion: v1.73.5](https://img.shields.io/badge/AppVersion-v1.73.5-informational?style=flat-square)
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![AppVersion: v1.73.5](https://img.shields.io/badge/AppVersion-v1.73.5-informational?style=flat-square)
Rclone CronJob to replicate buckets
@@ -29,7 +29,7 @@ Rclone CronJob to replicate buckets
| cronJob | object | `{"backoffLimit":3,"parallelism":1,"schedule":"0 0 * * *","suspend":false,"timeZone":"America/Chicago"}` | CronJob configuration |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"rclone/rclone","tag":"1.73.5@sha256:1619a625f845e169c34b952cf40c483c0392965b821c5155cde8cbfd35254a96"}` | Default image |
| nameOverride | string | `""` | Default pattern follows <pvcTarget>-backup |
| prune | object | `{"ageToPrune":"90d","enabled":false}` | Enable prune job |
| prune | object | `{"ageToPrune":"90d","enabled":false,"exclude":"","include":""}` | Enable prune job |
| rclone | object | `{"destination":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"},"providerType":"Other","source":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"}}` | rclone configuration |
| rclone.destination | object | `{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"}` | Destination configuration |
| rclone.source | object | `{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"}` | Source configuration |
@@ -22,6 +22,18 @@ controllers:
- src:{{ .Values.rclone.source.bucketName }}
- dest:{{ .Values.rclone.destination.bucketName }}
- --s3-no-check-bucket
{{- if .Values.prune.enabled }}
- --min-age
- {{ .Values.prune.ageToPrune }}
{{- end }}
{{- if .Values.prune.include }}
- --include
- {{ .Values.prune.include }}
{{- end }}
{{- if .Values.prune.exclude }}
- --exclude
- {{ .Values.prune.exclude }}
{{- end }}
- --verbose
env:
- name: RCLONE_S3_PROVIDER
+2
View File
@@ -38,6 +38,8 @@ rclone:
prune:
enabled: false
ageToPrune: 90d
include: ""
exclude: ""
# -- Secret configuration
secret: