Reputation: 60751
Is it possible to determine the current cluster's ClusterConfigFilePath?
With the service fabric cluster manager, I've created a 1 node cluster:
I would like to remove the cluster using powershell:
.\RemoveServiceFabricCluster.ps1 -ClusterConfigFilePath .\ClusterConfig.json -Force
# Removes Service Fabric from the current machine
.\CleanFabric.ps1
How do I find out the path for ClusterConfigFilePath?
Upvotes: 0
Views: 457
Reputation: 7063
When you download the standalone Service Fabric package, a few samples of the ClusterConfig.JSON file are downloaded to your work machine.
You can read more about config files here.
Upvotes: 1