Skip to content

Commit

Permalink
Merge pull request #2924 from parth-gr/fix-ux-device-class
Browse files Browse the repository at this point in the history
filesystem: correct the pool name in the ux backend handler
  • Loading branch information
openshift-merge-bot[bot] authored Dec 6, 2024
2 parents 1694063 + 3396a61 commit 7d2b735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/ux-backend/handlers/expandstorage/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ func createCephFilesystemStorageClass(w http.ResponseWriter, r *http.Request, cl
Parameters: map[string]string{
"clusterID": namespace,
"fsName": filesystemName,
"pool": poolName,
"pool": fmt.Sprintf("%s-%s", filesystemName, poolName),
"csi.storage.k8s.io/provisioner-secret-name": "rook-csi-cephfs-provisioner",
"csi.storage.k8s.io/provisioner-secret-namespace": namespace,
"csi.storage.k8s.io/node-stage-secret-name": "rook-csi-cephfs-node",
Expand Down

0 comments on commit 7d2b735

Please sign in to comment.