如何为在Azure Service Fabric群集中运行的无状态服务提供文件共享?

时间:2019-04-12 09:32:00

标签: file-storage azure-service-fabric

我正在部署具有文件上传方法的无状态API。 API使用者上载一个文件,该文件存储在文件系统(网络共享)中,元数据存储在数据库中。

但是,当将其部署到Azure环境时,我真的不知道如何配置该服务以能够访问支持SMB的Azure文件。 Service Fabric网格似乎支持文件卷驱动程序,但是我没有使用Service Mesh。只是很好的旧服务结构。

所以您能推荐一种不必重写我的文件I / O的方法,以便它可以在Azure与文件存储一起工作。

谢谢

1 个答案:

答案 0 :(得分:2)

您可以script挂载到文件共享。使用服务主体访问存储凭证,或将其置于配置中。 作为服务的setup entry point运行脚本。 确保脚本运行idempotent

$resourceGroupName = "<your-resource-group-name>"
$storageAccountName = "<your-storage-account-name>"

# These commands require you to be logged into your Azure account, run Login-AzAccount if you haven't
# already logged in.
$storageAccount = Get-AzStorageAccount -ResourceGroupName $resourceGroupName -Name $storageAccountName
$storageAccountKeys = Get-AzStorageAccountKey -ResourceGroupName $resourceGroupName -Name $storageAccountName

# The cmdkey utility is a command-line (rather than PowerShell) tool. We use Invoke-Expression to allow us to 
# consume the appropriate values from the storage account variables. The value given to the add parameter of the
# cmdkey utility is the host address for the storage account, <storage-account>.file.core.windows.net for Azure 
# Public Regions. $storageAccount.Context.FileEndpoint is used because non-Public Azure regions, such as sovereign 
# clouds or Azure Stack deployments, will have different hosts for Azure file shares (and other storage resources).
Invoke-Expression -Command ("cmdkey /add:$([System.Uri]::new($storageAccount.Context.FileEndPoint).Host) " + `
    "/user:AZURE\$($storageAccount.StorageAccountName) /pass:$($storageAccountKeys[0].Value)")