gpt4 book ai didi

azure - 在托管磁盘上设置 Azure Service Fabric 群集

转载 作者:行者123 更新时间:2023-12-03 00:51:03 24 4
gpt4 key购买 nike

有人知道如何在托管磁盘(操作系统和数据)上使用虚拟机设置 Service Fabric 集群吗?我很想知道如何使用模板配置来做到这一点。

最佳答案

您需要将 VMSS api 版本更改为 2016-04-30-preview 并将 storageProfile 更改为:

"storageProfile": {
"imageReference": {
"publisher": "[parameters('vmImagePublisher')]",
"offer": "[parameters('vmImageOffer')]",
"sku": "[parameters('vmImageSku')]",
"version": "[parameters('vmImageVersion')]"
},
"osDisk": {
"createOption": "FromImage"
"managedDisk": {
"storageAccountType": "Standard_LRS"
# defauls to Standard_LRS,
# you can choose to pick Premium_LRS if your VM size supports premium storage
# or you can omit this node completely if you need standard storage
}
}
}

使用托管磁盘时,存储帐户是多余的(您不需要它们,Azure 会为您处理)。

关于azure - 在托管磁盘上设置 Azure Service Fabric 群集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43117317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com