aoetalks
aoetalks

Reputation: 1861

fabric:/System/InfraustructureService is not healthy on Service Fabric Cluster

I deployed a fresh Service Fabric Cluster with a durability level of Silver and the fabric:/System/InfrastructureService/FE service is unhealthy with the following error:

Unhealthy event: SourceId='System.InfrastructureService', Property='CoordinatorStatus', HealthState='Warning', ConsiderWarningAsError=false. Failed to create infrastructure coordinator: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Fabric.InfrastructureService.ManagementException: Unable to get tenant policy agent endpoint from registry; verify that tenant settings match InfrastructureService configuration

Upvotes: 4

Views: 836

Answers (1)

aoetalks
aoetalks

Reputation: 1861

The durability level needs to be specified in two places: the VMSS resource and the Service Fabric Resource in the ARM template.

My template had it set to Bronze in the VMSS resource and silver in the Service Fabric resource - once I made them match, it worked.

Upvotes: 7

Related Questions