You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2023. It is now read-only.
* support national cloud
* fix hardcoded domain name in createOutputFile
* update rAzureBatch version etc
* auto discovery of storage account endpoint suffix
* styling fix
* fix test failure
* add back endpointSuffix for storage account
* add storage account endpoint suffix to downloadBlob call
* update docs
doAzureParallel is configured to run in public Azure cloud by default. To run workloads in national clouds, configure endpoint suffix for storage account in the cluster config which tells doAzureParallel which national cloud environment the storage account resides.
4
+
5
+
EndpointSuffix is the last part of the connection string shown in the Storage Account Access keys blade from Azure portal. The possible values usually are:
6
+
7
+
Azure public cloud: core.windows.net
8
+
Azure China cloud: core.chinacloudapi.cn
9
+
Azure US government cloud: core.usgovcloudapi.net
10
+
Azure German cloud: core.cloudapi.de
11
+
12
+
The value may be different if a DNS redirect is used, so it is better to double check its value on Storage Account Access keys blade.
13
+
14
+
Below is a sample of credential config with endpoint suffix specified:
0 commit comments