feature/bucket-backu-exclusion #1

Merged
RogerSik merged 1 commits from feature/bucket-backu-exclusion into main 2026-04-27 07:38:05 +02:00
3 changed files with 30 additions and 0 deletions
+6
View File
@@ -10,3 +10,9 @@ Currently released:
- Alpine Image with kubectl and rclone needed for cronjob - Alpine Image with kubectl and rclone needed for cronjob
- k8s/ - k8s/
- working deployment (for troubleshooting / manually exectuin) and cronjob manifest which also contains right permission - working deployment (for troubleshooting / manually exectuin) and cronjob manifest which also contains right permission
- example/
Features
- backup all bucket which are created with the Ceph ObjectBucketClaim CRD
- exclude buckets from backup with label
+12
View File
@@ -0,0 +1,12 @@
---
apiVersion: objectbucket.io/v1alpha1
kind: ObjectBucketClaim
metadata:
name: gitea-ceph-s3
namespace: thanos
labels:
app: gitea
s3-backup/exclude: 'false'
spec:
bucketName: gitea
storageClassName: rook-ceph-s3
+12
View File
@@ -0,0 +1,12 @@
---
apiVersion: objectbucket.io/v1alpha1
kind: ObjectBucketClaim
metadata:
name: thanos-ceph-s3
namespace: thanos
labels:
app: thanos
s3-backup/exclude: 'true'
spec:
bucketName: thanos
storageClassName: rook-ceph-s3