Skip to content

Latest commit

 

History

History
53 lines (42 loc) · 2.99 KB

service-fabric-cluster-config-upgrade-azure.md

File metadata and controls

53 lines (42 loc) · 2.99 KB
title description ms.topic ms.author author ms.service services ms.date
Upgrade the configuration of an Azure Service Fabric cluster
Learn how to upgrade the configuration that runs a Service Fabric cluster in Azure using a Resource Manager template.
how-to
tomcassidy
tomvcassidy
service-fabric
service-fabric
07/14/2022

Upgrade the configuration of a cluster in Azure

This article describes how to customize the various fabric settings for your Service Fabric cluster. For clusters hosted in Azure, you can customize settings through the Azure portal or by using an Azure Resource Manager template.

Note

Not all settings are available in the portal, and it is a best practice to customize it using an Azure Resource Manager template; Portal is for Service Fabric Dev\Test scenario's only.

[!INCLUDE updated-for-az]

Customize cluster settings using Resource Manager templates

Azure clusters can be configured through the JSON Resource Manager template. To learn more about the different settings, see Configuration settings for clusters. As an example, the steps below show how to add a new setting MaxDiskQuotaInMB to the Diagnostics section using Azure Resource Explorer.

  1. Go to https://resources.azure.com
  2. Navigate to your subscription by expanding subscriptions -> <Your Subscription> -> resourceGroups -> <Your Resource Group> -> providers -> Microsoft.ServiceFabric -> clusters -> <Your Cluster Name>
  3. In the top right corner, select Read/Write.
  4. Select Edit and update the fabricSettings JSON element and add a new element:
{
  "name": "Diagnostics",
  "parameters": [
    {
      "name": "MaxDiskQuotaInMB",
      "value": "65536"
    }
  ]
}

You can also customize cluster settings in one of the following ways with Azure Resource Manager:

Next steps