We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38bc76a commit b1c2fafCopy full SHA for b1c2faf
content/en/examples/storage/storageclass-low-latency.yaml
@@ -0,0 +1,14 @@
1
+apiVersion: storage.k8s.io/v1
2
+kind: StorageClass
3
+metadata:
4
+ name: low-latency
5
+ annotations:
6
+ storageclass.kubernetes.io/is-default-class: "false"
7
+provisioner: csi-driver.example-vendor.example
8
+reclaimPolicy: Retain # default value is Delete
9
+allowVolumeExpansion: true
10
+mountOptions:
11
+ - discard # this might enable UNMAP / TRIM at the block storage layer
12
+volumeBindingMode: WaitForFirstConsumer
13
+parameters:
14
+ guaranteedReadWriteLatency: "true" # provider-specific
0 commit comments