Azure service fabric 服务结构我应该将集群连接信息放入OnPrem的发布配置文件中吗?

Azure service fabric 服务结构我应该将集群连接信息放入OnPrem的发布配置文件中吗?,azure-service-fabric,Azure Service Fabric,我尝试从Deploy-FabricApplication.ps1本地调用此发布配置文件,以将应用程序推送到集群 如果执行Get-ServiceFabricClusterConnection,则会得到以下结果。我的理解是,我应该在发布配置文件中使用这些信息来选择到集群的连接。如果是,我应该使用哪些项目?大多数示例仅适用于Azure ConnectionEndpoint : FabricClientSettings : { ClientFriendlyNa

我尝试从Deploy-FabricApplication.ps1本地调用此发布配置文件,以将应用程序推送到集群

如果执行Get-ServiceFabricClusterConnection,则会得到以下结果。我的理解是,我应该在发布配置文件中使用这些信息来选择到集群的连接。如果是,我应该使用哪些项目?大多数示例仅适用于Azure

ConnectionEndpoint   : 
FabricClientSettings : {
                   ClientFriendlyName                   : PowerShell-06442d85-7b51-40d0-8859-3ac9551c7363
                   PartitionLocationCacheLimit          : 100000
                   PartitionLocationCacheBucketCount    : 1024
                   ServiceChangePollInterval            : 00:02:00
                   ConnectionInitializationTimeout      : 00:00:02
                   KeepAliveInterval                    : 00:00:20
                   ConnectionIdleTimeout                : 00:00:00
                   HealthOperationTimeout               : 00:02:00
                   HealthReportSendInterval             : 00:00:00
                   HealthReportRetrySendInterval        : 00:00:30
                   NotificationGatewayConnectionTimeout : 00:00:30
                   NotificationCacheUpdateTimeout       : 00:00:30
                   AuthTokenBufferSize                  : 4096
                   }
GatewayInformation   : {
                   NodeAddress                          : {myBox}.{MyDomain}.net:19000
                   NodeId                               : 85772935593a0315f92e3293832c5fe9
                   NodeInstanceId                       : 131303949240153844
                   NodeName                             : vm0
                   }
PSComputerName       : {mybox}.{mydomain}.net

ConnectionEndpoint   : 
FabricClientSettings : {
                   ClientFriendlyName                   : PowerShell-06442d85-7b51-40d0-8859-3ac9551c7363
                   PartitionLocationCacheLimit          : 100000
                   PartitionLocationCacheBucketCount    : 1024
                   ServiceChangePollInterval            : 00:02:00
                   ConnectionInitializationTimeout      : 00:00:02
                   KeepAliveInterval                    : 00:00:20
                   ConnectionIdleTimeout                : 00:00:00
                   HealthOperationTimeout               : 00:02:00
                   HealthReportSendInterval             : 00:00:00
                   HealthReportRetrySendInterval        : 00:00:30
                   NotificationGatewayConnectionTimeout : 00:00:30
                   NotificationCacheUpdateTimeout       : 00:00:30
                   AuthTokenBufferSize                  : 4096
                   }
GatewayInformation   : {
                   NodeAddress                          : {MyBox}.{MyDomain}.net:19000
                   NodeId                               : 85772935593a0315f92e3293832c5fe9
                   NodeInstanceId                       : 131303949240153844
                   NodeName                             : vm0
                   }
PSComputerName       : {myBox}.{myDomian}.net
谢谢,
Greg

仅端点和您正在使用的任何身份验证:

e、 g

<ClusterConnectionParameters ConnectionEndpoint="{myBox}.{MyDomain}.net:19000" WindowsCredentials="true" ServerCertThumbprint="0123456789012345678901234567890123456789" />