Skip to content

Commit

Permalink
Merge pull request #2928 from openshift-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…2924-to-release-4.18

DFBUGS-1012:[release-4.18] filesystem: correct the pool name in the ux backend handler
  • Loading branch information
openshift-merge-bot[bot] authored Dec 6, 2024
2 parents 5bf54f4 + 9a9ece0 commit 8d650e6
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 8d650e6

Please sign in to comment.