Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/ddc/alluxio/operations/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ func (a AlluxioFileUtils) QueryMetaDataInfoIntoFile(key KeyOfMetaDataFile, filen
return
}

// ExecMountScripts executes the mount script located at /etc/fluid/scripts/mount.sh in the Alluxio master pod.
// The script is mounted by the master statefulset and handles the mounting of storage backends to Alluxio.
// It runs the script with verbose logging enabled to capture detailed execution output.
// Returns an error if the script execution fails, otherwise returns nil indicating successful mount operation.
func (a AlluxioFileUtils) ExecMountScripts() error {
var (
// Note: this script is mounted in master/statefulset.yaml
Expand Down