[ceph-provisioners] Remove legacy Ceph provisioners

The legacy CephFS and RBD provisioners are no longer maintained and
are incompatible with the latest updates to Ubuntu and Ceph. This
change disables them. CSI provisioners should replace them.

Change-Id: Ife453ef654aa206fea95c07bbc2af4f5f6748f8f
This commit is contained in:
Stephen Taylor 2023-03-07 14:22:39 -07:00
parent a7cd689280
commit 334123e81c
3 changed files with 7 additions and 5 deletions

View File

@ -15,6 +15,6 @@ apiVersion: v1
appVersion: v1.0.0 appVersion: v1.0.0
description: OpenStack-Helm Ceph Provisioner description: OpenStack-Helm Ceph Provisioner
name: ceph-provisioners name: ceph-provisioners
version: 0.1.21 version: 0.1.22
home: https://github.com/ceph/ceph home: https://github.com/ceph/ceph
... ...

View File

@ -19,11 +19,12 @@
deployment: deployment:
ceph: true ceph: true
client_secrets: false client_secrets: false
# Original rbd_provisioner is now DEPRECATED. It will be removed in the
# next release; CSI RBD provisioner should be used instead.
rbd_provisioner: true
csi_rbd_provisioner: true csi_rbd_provisioner: true
cephfs_provisioner: true # Original rbd_provisioner and cephfs_provisioner are now DEPRECATED. They
# will be removed in the next release; CSI provisioners should be used
# instead.
rbd_provisioner: false
cephfs_provisioner: false
release_group: null release_group: null

View File

@ -21,4 +21,5 @@ ceph-provisioners:
- 0.1.19 Add pods watch and list permissions to cluster role - 0.1.19 Add pods watch and list permissions to cluster role
- 0.1.20 Add missing CRDs for volume snapshots (classes, contents) - 0.1.20 Add missing CRDs for volume snapshots (classes, contents)
- 0.1.21 Added OCI registry authentication - 0.1.21 Added OCI registry authentication
- 0.1.22 Remove legacy Ceph provisioners
... ...