【发布时间】:2019-11-11 23:35:39
【问题描述】:
我有一个开发集群,我想向它添加一个(只读)客户端证书。当我运行适当的 powershell 命令时:
PS> Add-AzServiceFabricClientCertificate `
-ResourceGroupName $ClusterResourceGroupName `
-Name $ClusterName `
-Thumbprint $ClientCertThumbprint
我收到以下错误消息:
Add-AzServiceFabricClientCertificate : Code: SingleNodeClusterUpdateNotAllowed, Message: Single node cluster update
not allowed. Updates are allowed for clusters having node count equal or greater than 3.
这是否意味着我需要重建整个集群,还是有办法向集群添加新的客户端指纹?
请注意,我也尝试过使用 azure 门户,但我收到以下错误,我猜它的原因与上述相同:
Failed to submit updates for certificate
Failed to submit updates to 'read-only client certificate' for 'xxxxxx'.
【问题讨论】:
标签: azure certificate azure-service-fabric