You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.7 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PublishProfile xmlns="http://schemas.microsoft.com/2015/05/fabrictools">
  3. <!-- ClusterConnectionParameters allows you to specify the PowerShell parameters to use when connecting to the Service Fabric cluster.
  4. Valid parameters are any that are accepted by the Connect-ServiceFabricCluster cmdlet.
  5. For a remote cluster, you would need to specify the appropriate parameters for that specific cluster.
  6. For example: <ClusterConnectionParameters ConnectionEndpoint="mycluster.westus.cloudapp.azure.com:19000" />
  7. Example showing parameters for a cluster that uses certificate security:
  8. <ClusterConnectionParameters ConnectionEndpoint="mycluster.westus.cloudapp.azure.com:19000"
  9. X509Credential="true"
  10. ServerCertThumbprint="0123456789012345678901234567890123456789"
  11. FindType="FindByThumbprint"
  12. FindValue="9876543210987654321098765432109876543210"
  13. StoreLocation="CurrentUser"
  14. StoreName="My" />
  15. Example showing parameters for a cluster that uses Azure Active Directory (AAD) security:
  16. <ClusterConnectionParameters ConnectionEndpoint="mycluster.westus.cloudapp.azure.com:19000"
  17. AzureActiveDirectory="true"
  18. ServerCertThumbprint="0123456789012345678901234567890123456789" />
  19. -->
  20. <ClusterConnectionParameters ConnectionEndpoint="#{your_sf_dns}#:19000" />
  21. <ApplicationParameterFile Path="..\ApplicationParameters\Cloud.xml" />
  22. </PublishProfile>