0

当使用模板在 Azure 上创建新的 Service Fabric 时,它会使用这个 json 片段 -

"name": "[concat('VMDiagnosticsVmExt', '_', variables('vmNodeType0Name'))]",
"properties": {
  "type": "IaaSDiagnostics",
  "autoUpgradeMinorVersion": true,
  "protectedSettings": {
    "storageAccountName": "[parameters('SupportStorageAccountName')]",
    "storageAccountKey": "[parameters('SupportprotectedAccountKey1')]",
    "storageAccountEndPoint": "https://core.windows.net/"

我想更新 storageAccountKey 作为我们安全程序的一部分,但我不知道如何更改它们。

我尝试通过模板应用更改,但出现错误

"code": "OperationNotAllowed",
"message": "VM Scale Set extensions of handler 
'Microsoft.Azure.ServiceFabric.ServiceFabricNode' 
can be deleted only at the time of VM Scale Set deletion."

而且我在 PowerShell 中找不到任何可以连接并让我改变它的东西

这可能吗?

4

1 回答 1

0

您是否使用了与最初用于部署 Service Fabric 的模板相同的模板?错误消息听起来好像只在模板中指定了规模集,而 Service Fabric 阻止了它,因为在模板中不包含服务结构扩展会从规模集中删除服务结构。

于 2017-04-06T00:36:19.020 回答