forked from k-space/kube
22 lines
676 B
YAML
22 lines
676 B
YAML
---
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: redis
|
|
annotations:
|
|
kubernetes.io/description: |
|
|
Storage class for Redis, KeyDB, DragonflyDB and similar applications
|
|
deployed in highly available fashion utilizing application level
|
|
replication needing persistent volume for storing the snapshots.
|
|
This storage class uses XFS, has no block level redundancy and
|
|
has block device level caching disabled.
|
|
provisioner: csi.proxmox.sinextra.dev
|
|
reclaimPolicy: Retain
|
|
volumeBindingMode: WaitForFirstConsumer
|
|
allowVolumeExpansion: true
|
|
parameters:
|
|
csi.storage.k8s.io/fstype: xfs
|
|
storage: ks-pvs
|
|
cache: none
|
|
ssd: "true"
|