Skip to content

Commit

Permalink
Merge pull request #2510 from thotz/obc-driver-prefix-storage-class
Browse files Browse the repository at this point in the history
add ROOK_OBC_PROVISIONER_NAME_PREFIX to Rook Config
  • Loading branch information
openshift-merge-bot[bot] authored Mar 22, 2024
2 parents cc415e7 + cba19a5 commit bd08bf5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion controllers/storagecluster/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func generateNameForSnapshotClass(initData *ocsv1.StorageCluster, snapshotType S
}

func generateNameForSnapshotClassDriver(snapshotType SnapshotterType) string {
return fmt.Sprintf("%s.%s.csi.ceph.com", csiDriverNamePrefix, snapshotType)
return fmt.Sprintf("%s.%s.csi.ceph.com", storageclassDriverNamePrefix, snapshotType)
}

func generateNameForSnapshotClassSecret(instance *ocsv1.StorageCluster, snapshotType SnapshotterType) string {
Expand Down
14 changes: 7 additions & 7 deletions controllers/storagecluster/storageclasses.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"encoding/json"
"fmt"
"os"
"reflect"
"strings"

Expand All @@ -27,14 +26,15 @@ const (
storageClassSkippedError = "some StorageClasses were skipped while waiting for pre-requisites to be met"
defaultStorageClassAnnotation = "storageclass.kubernetes.io/is-default-class"

//csi driver name prefix
csiDriverNamePrefix = "openshift-storage"
//storage class driver name prefix
storageclassDriverNamePrefix = "openshift-storage"
)

var (
rbdDriverName = csiDriverNamePrefix + ".rbd.csi.ceph.com"
cephFSDriverName = csiDriverNamePrefix + ".cephfs.csi.ceph.com"
nfsDriverName = csiDriverNamePrefix + ".nfs.csi.ceph.com"
rbdDriverName = storageclassDriverNamePrefix + ".rbd.csi.ceph.com"
cephFSDriverName = storageclassDriverNamePrefix + ".cephfs.csi.ceph.com"
nfsDriverName = storageclassDriverNamePrefix + ".nfs.csi.ceph.com"
obcDriverName = storageclassDriverNamePrefix + ".ceph.rook.io/bucket"
)

// StorageClassConfiguration provides configuration options for a StorageClass.
Expand Down Expand Up @@ -426,7 +426,7 @@ func newCephOBCStorageClassConfiguration(initData *ocsv1.StorageCluster) Storage
"description": "Provides Object Bucket Claims (OBCs)",
},
},
Provisioner: fmt.Sprintf("%s.ceph.rook.io/bucket", os.Getenv(util.OperatorNamespaceEnvVar)),
Provisioner: obcDriverName,
ReclaimPolicy: &reclaimPolicy,
Parameters: map[string]string{
"objectStoreNamespace": initData.Namespace,
Expand Down

0 comments on commit bd08bf5

Please sign in to comment.