28 lines
590 B
YAML
28 lines
590 B
YAML
---
|
|
kind: StorageClass
|
|
apiVersion: storage.k8s.io/v1
|
|
metadata:
|
|
name: longhorn-ssd
|
|
namespace: darkdork-dev
|
|
provisioner: driver.longhorn.io
|
|
allowVolumeExpansion: true
|
|
parameters:
|
|
numberOfReplicas: "3"
|
|
staleReplicaTimeout: "2880" # 48 hours in minutes
|
|
fromBackup: ""
|
|
fsType: "xfs"
|
|
# backupTargetName: "default"
|
|
# mkfsParams: "-I 256 -b 4096 -O ^metadata_csum,^64bit"
|
|
# diskSelector: "ssd,fast"
|
|
# nodeSelector: "storage,fast"
|
|
# recurringJobSelector: '[
|
|
# {
|
|
# "name":"snap",
|
|
# "isGroup":true,
|
|
# },
|
|
# {
|
|
# "name":"backup",
|
|
# "isGroup":false,
|
|
# }
|
|
# ]'
|
|
---
|