oci-cloud-controller-manager icon indicating copy to clipboard operation
oci-cloud-controller-manager copied to clipboard

Add support for Performance based auto-tune block volumes

Open kdw174 opened this issue 7 months ago • 0 comments

We would like to be able to define a storage class with performance based auto-tune parameters. For example, be able to define a ultra high performance block volume with auto-tune parameters of a min of 30 VPU and 120 VPU.

allowVolumeExpansion: true
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  name: oci-higher-performance-noatime
parameters:
  attachment-type: paravirtualized
  auto-tune-min: "30"
  auto-tune-max: "120"
provisioner: blockvolume.csi.oraclecloud.com
reclaimPolicy: Delete
volumeBindingMode: WaitForFirstConsumer

kdw174 avatar Oct 15 '25 18:10 kdw174