Hi,

I don't think you can use `openstack.org/standalone-cinder` without setup a standalone cinder external provisioner[1]. Although kubernetes.io/cinder is deprecated, it just works, either for the in-tree openstack provider or openstack-cloud-controller-manager[2] which is supported in Stein dev cycle and already backported to Rocky. Regardless of both of them, CSI is the future(I'm going to add that support in Magnum, too).


Cheers,
Lingxian Kong


On Thu, Jan 24, 2019 at 7:39 PM Christian Zunker <christian.zunker@codecentric.cloud> wrote:
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:

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