From 2bef8c2bde57cf9a883a376160f12435a4062a82 Mon Sep 17 00:00:00 2001 From: gitea-bot Date: Mon, 19 Jan 2026 00:02:50 +0000 Subject: [PATCH] Automated Manifest Update (#3317) This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/3317 Co-authored-by: gitea-bot Co-committed-by: gitea-bot --- .../shelfmark/Deployment-shelfmark.yaml | 2 +- ...elfmark-config-backup-secret-external.yaml | 58 +++++++++++++++++++ ...-shelfmark-config-backup-secret-local.yaml | 58 +++++++++++++++++++ ...elfmark-config-backup-source-external.yaml | 29 ++++++++++ ...-shelfmark-config-backup-source-local.yaml | 29 ++++++++++ 5 files changed, 175 insertions(+), 1 deletion(-) create mode 100644 clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-external.yaml create mode 100644 clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-local.yaml create mode 100644 clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-external.yaml create mode 100644 clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-local.yaml diff --git a/clusters/cl01tl/manifests/shelfmark/Deployment-shelfmark.yaml b/clusters/cl01tl/manifests/shelfmark/Deployment-shelfmark.yaml index cfc312c37..12462deb1 100644 --- a/clusters/cl01tl/manifests/shelfmark/Deployment-shelfmark.yaml +++ b/clusters/cl01tl/manifests/shelfmark/Deployment-shelfmark.yaml @@ -38,7 +38,7 @@ spec: - name: FLASK_PORT value: "8084" - name: SEARCH_MODE - value: direct + value: universal image: ghcr.io/calibrain/shelfmark:v1.0.1 imagePullPolicy: IfNotPresent livenessProbe: diff --git a/clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-external.yaml b/clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-external.yaml new file mode 100644 index 000000000..2cdbc202b --- /dev/null +++ b/clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-external.yaml @@ -0,0 +1,58 @@ +apiVersion: external-secrets.io/v1 +kind: ExternalSecret +metadata: + name: shelfmark-config-backup-secret-external + namespace: shelfmark + labels: + helm.sh/chart: volsync-target-config-0.7.0 + app.kubernetes.io/instance: shelfmark + app.kubernetes.io/part-of: shelfmark + app.kubernetes.io/version: "0.7.0" + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/name: shelfmark-config-backup-secret-external +spec: + secretStoreRef: + kind: ClusterSecretStore + name: vault + target: + template: + mergePolicy: Merge + engineVersion: v2 + data: + RESTIC_REPOSITORY: "{{ .BUCKET_ENDPOINT }}/shelfmark/shelfmark-config" + data: + - secretKey: BUCKET_ENDPOINT + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /volsync/restic/digital-ocean + metadataPolicy: None + property: BUCKET_ENDPOINT + - secretKey: RESTIC_PASSWORD + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /volsync/restic/digital-ocean + metadataPolicy: None + property: RESTIC_PASSWORD + - secretKey: AWS_DEFAULT_REGION + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /digital-ocean/home-infra/volsync-backups + metadataPolicy: None + property: AWS_DEFAULT_REGION + - secretKey: AWS_ACCESS_KEY_ID + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /digital-ocean/home-infra/volsync-backups + metadataPolicy: None + property: AWS_ACCESS_KEY_ID + - secretKey: AWS_SECRET_ACCESS_KEY + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /digital-ocean/home-infra/volsync-backups + metadataPolicy: None + property: AWS_SECRET_ACCESS_KEY diff --git a/clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-local.yaml b/clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-local.yaml new file mode 100644 index 000000000..60f708eb6 --- /dev/null +++ b/clusters/cl01tl/manifests/shelfmark/ExternalSecret-shelfmark-config-backup-secret-local.yaml @@ -0,0 +1,58 @@ +apiVersion: external-secrets.io/v1 +kind: ExternalSecret +metadata: + name: shelfmark-config-backup-secret-local + namespace: shelfmark + labels: + helm.sh/chart: volsync-target-config-0.7.0 + app.kubernetes.io/instance: shelfmark + app.kubernetes.io/part-of: shelfmark + app.kubernetes.io/version: "0.7.0" + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/name: shelfmark-config-backup-secret-local +spec: + secretStoreRef: + kind: ClusterSecretStore + name: vault + target: + template: + mergePolicy: Merge + engineVersion: v2 + data: + RESTIC_REPOSITORY: "{{ .BUCKET_ENDPOINT }}/shelfmark/shelfmark-config" + data: + - secretKey: BUCKET_ENDPOINT + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /volsync/restic/garage-local + metadataPolicy: None + property: BUCKET_ENDPOINT + - secretKey: RESTIC_PASSWORD + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /volsync/restic/garage-local + metadataPolicy: None + property: RESTIC_PASSWORD + - secretKey: AWS_DEFAULT_REGION + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /garage/home-infra/volsync-backups + metadataPolicy: None + property: ACCESS_REGION + - secretKey: AWS_ACCESS_KEY_ID + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /garage/home-infra/volsync-backups + metadataPolicy: None + property: ACCESS_KEY_ID + - secretKey: AWS_SECRET_ACCESS_KEY + remoteRef: + conversionStrategy: Default + decodingStrategy: None + key: /garage/home-infra/volsync-backups + metadataPolicy: None + property: ACCESS_SECRET_KEY diff --git a/clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-external.yaml b/clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-external.yaml new file mode 100644 index 000000000..8d34eca5d --- /dev/null +++ b/clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-external.yaml @@ -0,0 +1,29 @@ +apiVersion: volsync.backube/v1alpha1 +kind: ReplicationSource +metadata: + name: shelfmark-config-backup-source-external + namespace: shelfmark + labels: + helm.sh/chart: volsync-target-config-0.7.0 + app.kubernetes.io/instance: shelfmark + app.kubernetes.io/part-of: shelfmark + app.kubernetes.io/version: "0.7.0" + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/name: shelfmark-config-backup +spec: + sourcePVC: shelfmark-config + trigger: + schedule: 0 9 * * * + restic: + pruneIntervalDays: 7 + repository: shelfmark-config-backup-secret-external + retain: + daily: 7 + hourly: 0 + monthly: 3 + weekly: 4 + yearly: 1 + copyMethod: Snapshot + storageClassName: ceph-block + volumeSnapshotClassName: ceph-blockpool-snapshot + cacheCapacity: 1Gi diff --git a/clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-local.yaml b/clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-local.yaml new file mode 100644 index 000000000..3d4199fa0 --- /dev/null +++ b/clusters/cl01tl/manifests/shelfmark/ReplicationSource-shelfmark-config-backup-source-local.yaml @@ -0,0 +1,29 @@ +apiVersion: volsync.backube/v1alpha1 +kind: ReplicationSource +metadata: + name: shelfmark-config-backup-source-local + namespace: shelfmark + labels: + helm.sh/chart: volsync-target-config-0.7.0 + app.kubernetes.io/instance: shelfmark + app.kubernetes.io/part-of: shelfmark + app.kubernetes.io/version: "0.7.0" + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/name: shelfmark-config-backup +spec: + sourcePVC: shelfmark-config + trigger: + schedule: 0 8 * * * + restic: + pruneIntervalDays: 7 + repository: shelfmark-config-backup-secret-local + retain: + daily: 7 + hourly: 0 + monthly: 3 + weekly: 4 + yearly: 1 + copyMethod: Snapshot + storageClassName: ceph-block + volumeSnapshotClassName: ceph-blockpool-snapshot + cacheCapacity: 1Gi