core-deployments/longhorn/storageclass.yaml

17 lines
392 B
YAML
Raw Normal View History

2024-10-07 09:19:39 +02:00
---
2024-01-26 13:39:13 +01:00
# this is the storageclass manifest for the logs and metrics volumes
kind: StorageClass
2024-01-26 18:12:27 +01:00
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"
2024-10-07 09:19:39 +02:00
dataLocality: "disabled"