rework storage to reduce backup load
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aaron Riedel 2024-01-26 13:39:13 +01:00
parent 07a1cd6648
commit 0be2949c50
Signed by: aaron
GPG key ID: 643004654D40D577
5 changed files with 57 additions and 1 deletions

View file

@ -0,0 +1,15 @@
# this is the storageclass manifest for the logs and metrics volumes
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: longhorn-local
provisioner: driver.longhorn.io
allowVolumeExpansion: true
reclaimPolicy: "Delete"
volumeBindingMode: Immediate
parameters:
numberOfReplicas: "2"
staleReplicaTimeout: "30"
fromBackup: ""
fsType: "ext4"
dataLocality: "disabled"