Skip to content

Commit a9a3d7d

Browse files
authored
Fix VC storage storage containerPath (#621)
1 parent 635e81f commit a9a3d7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ClusterManager/job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def vc_storage_mountpoints(self):
122122
for storage in os.listdir(dltsdata_vc_path):
123123
vc_mountpoint = {
124124
"name": ("%s-%s" % (vc_name, storage)).lower(),
125-
"containerPath": storage,
125+
"containerPath": "/" + storage,
126126
"hostPath": os.path.join(dltsdata_vc_path, storage),
127127
"enabled": True}
128128
vc_mountpoints.append(vc_mountpoint)

0 commit comments

Comments
 (0)