Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update AZ File share doc. [ci skip] #4235

Merged
merged 3 commits into from
Sep 3, 2023
Merged
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
13 changes: 9 additions & 4 deletions docs/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ azure {
}
```

The files in the File share are available to the task in the directory: `<YOUR MOUNT DESTINATION>/<YOUR SOURCE FILE SHARE NAME>`.
The files in the File share are available to the task in the directory: `<YOUR MOUNT DESTINATION>`.

For instance, given the following configuration:

Expand All @@ -73,15 +73,20 @@ azure {
// ...

fileShares {
dir1 {
mountPath = "/mnt/mydata/"
rnaseqResources {
mountPath = "/mnt/mydata/myresources"
}
}
}
}
```

The task can access the File share in `/mnt/mydata/dir1`.
The task can access the File share in `/mnt/mydata/myresources`. Note: The string `rnaseqResources` in the above config can be any name of your choice, and it does not affect the underlying mount.

:::{warning}
Azure File shares do not support authentication and management with Active Directory. The storage account key must be
set in the configuration if a share is mounted.
:::

(azure-batch)=

Expand Down