Hi,

we are running Magnum Rocky.
I tried to create a persistent volume claim and got it working with provisioner: kubernetes.io/cinder
But it failed with provisioner: openstack.org/standalone-cinder

The docs state kubernetes.io/cinder is deprecated:
https://kubernetes.io/docs/concepts/storage/storage-classes/#openstack-cinder

Which one should be used in Rocky?


This is our complete config for this case:
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  name: cinder
  annotations:
  labels:
parameters:
  type: volumes_hdd
  availability: cinderAZ_ceph
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: myclaim
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 42Gi
  storageClassName: cinder

regards
Christian