Skip to content

Commit 6296f5d

Browse files
authored
Merge pull request #196242 from saketharsh/manageddiskga
GA Doc Updates for Managed Data Disk SFRP support
2 parents fc30164 + 49b69ee commit 6296f5d

File tree

1 file changed

+7
-19
lines changed

1 file changed

+7
-19
lines changed

articles/service-fabric/service-fabric-managed-disk.md

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ ms.author: micraft
99

1010
---
1111

12-
# Deploy an Azure Service Fabric cluster node type with managed data disks (preview)
13-
14-
>[!NOTE]
15-
> Support for managed data disks is only in preview right now and should not be used with production workloads.
16-
12+
# Deploy an Azure Service Fabric cluster node type with managed data disks
1713

1814
Azure Service Fabric node types, by default, use the temporary disk on each virtual machine (VM) in the underlying virtual machine scale set for data storage. However, because the temporary disk is not persistent, and the size of the temporary disk is bound to a given VM SKU, this can be too restrictive for some scenarios.
1915

@@ -22,19 +18,17 @@ This article provides the steps for how to use native support from Service Fabri
2218
## Prerequisites
2319

2420
* The required minimum disk size for the managed data disk is 50 GB.
25-
* In scenarios where more than one managed data disk is attached, the customer needs to manage the data disks themselves.
21+
* Data disk drive letter should be set to character lexicographically greater than all drives present in the virtual machine scale set SKU.
22+
* Only one managed data disk per VM is supported. For scenarios involving more than 1 data disks, user needs to manage the data disks on their own.
2623

2724
## Configure the virtual machine scale set to use managed data disks in Service Fabric
2825
To use managed data disks on a node type, configure the underlying virtual machine scale set resource with the following:
2926

3027
* Add a managed disk in data disks section of the template for the virtual machine scale set.
31-
* Update the Service Fabric extension with following settings:
28+
* Update the Service Fabric extension for the virtual machine scale set with following settings:
3229
* For Windows: **useManagedDataDisk: true** and **dataPath: 'K:\\\\SvcFab'**. Note that drive K is just a representation. You can use any drive letter lexicographically greater than all the drive letters present in the virtual machine scale set SKU.
3330
* For Linux: **useManagedDataDisk:true** and **dataPath: '\mnt\sfdataroot'**.
3431

35-
>[!NOTE]
36-
> Support for managed data disks for Linux Service Fabric clusters is currently not available.
37-
3832
Here's an Azure Resource Manager template for a Service Fabric extension:
3933

4034
```json
@@ -83,17 +77,11 @@ Here's an Azure Resource Manager template for a Service Fabric extension:
8377
```
8478

8579
## Migrate to using managed data disks for Service Fabric node types
86-
87-
For all migration scenarios:
80+
For all migration scenarios, new node types with managed data disks need to be added. Existing node types cannot be converted to use managed data disks.
8881

8982
1. Add a new node type that's configured to use managed data disks as specified earlier.
90-
91-
1. Migrate any required workloads to the new node type.
92-
93-
1. Disable and remove the old node type from the cluster.
94-
95-
96-
83+
2. Migrate any required workloads to the new node type.
84+
3. Disable and remove the old node type from the cluster.
9785

9886

9987
## Next steps

0 commit comments

Comments
 (0)