Skip to content

Commit 6949e2e

Browse files
authored
Merge pull request #188414 from craftyhouse/sfmc-2022-01-01-release
Sfmc 2022 01 01 release
2 parents 2972b11 + 39e1c34 commit 6949e2e

8 files changed

+91
-48
lines changed

articles/service-fabric/faq-managed-cluster.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
ms.author: micraft
77
author: craftyhouse
88
ms.service: service-fabric
9-
ms.date: 8/23/2021
9+
ms.date: 2/14/2022
1010
ms.custom: references_regions
1111

1212
title: Service Fabric managed clusters frequently asked questions
@@ -61,27 +61,27 @@ sections:
6161
- question: |
6262
I want to have an internal-only load balancer, is that possible?
6363
answer: |
64-
This is supported with the 2021-07-01-preview release. See [Configure network settings for Service Fabric managed clusters](./how-to-managed-cluster-networking.md#byolb)
64+
Yes, you can configure internal-only load balancer. See [Configure network settings for Service Fabric managed clusters](./how-to-managed-cluster-networking.md#byolb)
6565
6666
- question: |
67-
Can I change the Azure AD tenant after initial deployment?
67+
Can I change the Azure AD tenant after initial deployment?
6868
answer: |
6969
No. At this time you would need to create a new Service Fabric managed cluster resource.
7070
7171
- question: |
7272
I want to enable IPv6, is that possible?
7373
answer: |
74-
This is supported with the 2021-07-01-preview release. See [Configure network settings for Service Fabric managed clusters](./how-to-managed-cluster-networking.md#ipv6)
74+
Yes, see [Configure network settings for Service Fabric managed clusters](./how-to-managed-cluster-networking.md#ipv6)
7575
7676
- question: |
7777
I want to use an existing VNet for a Service Fabric managed cluster, can I do that?
7878
answer: |
79-
This is supported with the 2021-07-01-preview release. See [Configure network settings for Service Fabric managed clusters](./how-to-managed-cluster-networking.md#byolb)
79+
Yes, see [Configure network settings for Service Fabric managed clusters](./how-to-managed-cluster-networking.md#byolb)
8080
8181
- question: |
8282
Can I autoscale my cluster?
8383
answer: |
84-
Autoscaling is [available](./how-to-managed-cluster-autoscale.md)
84+
Yes, you can enable [autoscaling](./how-to-managed-cluster-autoscale.md)
8585
8686
- question: |
8787
Can I deploy my cluster across availability zones?

articles/service-fabric/how-to-managed-cluster-autoscale.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Configure autoscaling for Service Fabric managed cluster nodes
33
description: Learn how to configure autoscaling policies on Service Fabric managed cluster.
44
ms.topic: how-to
5-
ms.date: 10/25/2021
5+
ms.date: 2/14/2022
66
---
77

8-
# Introduction to Autoscaling on Service Fabric managed clusters (preview)
8+
# Introduction to Autoscaling on Service Fabric managed clusters
99
[Autoscaling](../azure-monitor/autoscale/autoscale-overview.md) gives great elasticity and enables addition or reduction of nodes on demand on a secondary node type. This automated and elastic behavior reduces the management overhead and potential business impact by monitoring and optimizing the amount of nodes servicing your workload. You configure rules for your workload and let autoscaling handle the rest. When those defined thresholds are met, autoscale rules take action to adjust the capacity of your node type. Autoscaling can be enabled, disabled, or configured at any time. This article provides an example deployment, how to enable or disable autoscaling, and how to configure an example autoscale policy.
1010

1111

1212
**Requirements and supported metrics:**
13-
* In order to use autoscaling on managed clusters, you need to be using API version `2021-07-01-preview` or later.
13+
* The Service Fabric managed cluster resource apiVersion should be **2022-01-01** or later.
1414
* The cluster SKU must be Standard.
1515
* Can only be configured on a secondary node type in your cluster.
1616
* After enabling autoscale for a node type, configure `vmInstanceCount` property to `-1` when redeploying the resource.
@@ -134,7 +134,7 @@ The following example will set a policy for `nodeType2Name` to be at least 3 nod
134134
"metricTrigger": {
135135
"metricName": "Percentage CPU",
136136
"metricNamespace": "",
137-
"metricResourceUri": "[concat('/subscriptions/',subscription().subscriptionId,'/resourceGroups/SFC_', reference(resourceId('Microsoft.ServiceFabric/managedClusters', parameters('clusterName')), '2021-07-01-preview').clusterId,'/providers/Microsoft.Compute/virtualMachineScaleSets/',parameters('nodeType2Name'))]",
137+
"metricResourceUri": "[concat('/subscriptions/',subscription().subscriptionId,'/resourceGroups/SFC_', reference(resourceId('Microsoft.ServiceFabric/managedClusters', parameters('clusterName')), '2022-01-01').clusterId,'/providers/Microsoft.Compute/virtualMachineScaleSets/',parameters('nodeType2Name'))]",
138138
"timeGrain": "PT1M",
139139
"statistic": "Average",
140140
"timeWindow": "PT30M",
@@ -153,7 +153,7 @@ The following example will set a policy for `nodeType2Name` to be at least 3 nod
153153
"metricTrigger": {
154154
"metricName": "Percentage CPU",
155155
"metricNamespace": "",
156-
"metricResourceUri": "[concat('/subscriptions/',subscription().subscriptionId,'/resourceGroups/SFC_', reference(resourceId('Microsoft.ServiceFabric/managedClusters', parameters('clusterName')), '2021-07-01-preview').clusterId,'/providers/Microsoft.Compute/virtualMachineScaleSets/',parameters('nodeType2Name'))]",
156+
"metricResourceUri": "[concat('/subscriptions/',subscription().subscriptionId,'/resourceGroups/SFC_', reference(resourceId('Microsoft.ServiceFabric/managedClusters', parameters('clusterName')), '2022-01-01').clusterId,'/providers/Microsoft.Compute/virtualMachineScaleSets/',parameters('nodeType2Name'))]",
157157
"timeGrain": "PT1M",
158158
"statistic": "Average",
159159
"timeWindow": "PT30M",

articles/service-fabric/how-to-managed-cluster-enable-disk-encryption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Enable Disk Encryption for Service Fabric managed cluster nodes
33
description: Learn how to enable disk encryption for Azure Service Fabric managed cluster nodes in Windows using an ARM template.
44
ms.topic: how-to
5-
ms.date: 11/8/2021
5+
ms.date: 2/14/2022
66
ms.custom: devx-track-azurepowershell
77
---
88
# Enable disk encryption for Service Fabric managed cluster nodes
99

1010
Service Fabric managed clusters support two disk encryption options to help safeguard your data to meet your organizational security and compliance commitments. The recommended option is Encryption at host, but also supports Azure Disk Encryption. Review the [disk encryption options](../virtual-machines/disk-encryption-overview.md) and make sure the selected option meets your needs.
1111

1212

13-
## Enable encryption at host (preview)
13+
## Enable encryption at host
1414

1515
This encryption method improves on [Azure Disk Encryption](how-to-managed-cluster-enable-disk-encryption.md) by supporting all OS types and images, including custom images, for your VMs by encrypting data in the Azure Storage service. This method does not use your VMs CPU nor does it impact your VMs performance enabling workloads to use all of the available VMs SKU resources.
1616

articles/service-fabric/how-to-managed-cluster-managed-disk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Select managed disk types for Service Fabric managed cluster nodes
33
description: Learn how to select managed disk types for Service Fabric managed cluster nodes and configure in an ARM template.
44
ms.topic: how-to
5-
ms.date: 11/19/2021
5+
ms.date: 2/14/2022
66
---
77

88
# Select managed disk types for Service Fabric managed cluster nodes
@@ -24,7 +24,7 @@ Azure Service Fabric manged clusters support the following managed disk types:
2424
* Premium SSD locally redundant storage. Best for production and performance sensitive workloads.
2525

2626
>[!NOTE]
27-
> Any temp disk associated with VM Size will *not* be used for storing any Service Fabric or application related data
27+
> Any temp disk associated with VM Size will *not* be used for storing any Service Fabric or application related data by default. [Stateless node types](how-to-managed-cluster-stateless-node-type.md) do support temp disks if required.
2828
2929
## Specifying a Service Fabric managed cluster disk type
3030

articles/service-fabric/how-to-managed-cluster-modify-node-type.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Configure or modify a Service Fabric managed cluster node type
33
description: This article walks through how to modify a managed cluster node type
44
ms.topic: how-to
5-
ms.date: 12/10/2021
5+
ms.date: 2/14/2022
66
---
77

88
# Service Fabric managed cluster node types
@@ -192,15 +192,15 @@ You can choose to enable automatic OS image upgrades to the virtual machines run
192192

193193
To enable automatic OS upgrades:
194194

195-
* Use the `2021-05-01` (or later) version of *Microsoft.ServiceFabric/managedclusters* and *Microsoft.ServiceFabric/managedclusters/nodetypes* resources
195+
* Use apiVersion `2021-05-01` or later version of *Microsoft.ServiceFabric/managedclusters* and *Microsoft.ServiceFabric/managedclusters/nodetypes* resources
196196
* Set the cluster's property `enableAutoOSUpgrade` to *true*
197197
* Set the cluster nodeTypes' resource property `vmImageVersion` to *latest*
198198

199199
For example:
200200

201201
```json
202202
{
203-
"apiVersion": "2021-05-01",
203+
"apiVersion": "[variables('sfApiVersion')]",
204204
"type": "Microsoft.ServiceFabric/managedclusters",
205205
...
206206
"properties": {
@@ -209,7 +209,7 @@ For example:
209209
},
210210
},
211211
{
212-
"apiVersion": "2021-05-01",
212+
"apiVersion": "[variables('sfApiVersion')]",
213213
"type": "Microsoft.ServiceFabric/managedclusters/nodetypes",
214214
...
215215
"properties": {
@@ -339,7 +339,7 @@ Service Fabric managed cluster does not support in-place modification of the VM
339339
* [Delete old node type via portal or PowerShell](how-to-managed-cluster-modify-node-type.md#remove-a-node-type). To remove a primary node type you will have to use PowerShell.
340340

341341

342-
## Configure multiple managed disks (preview)
342+
## Configure multiple managed disks
343343
Service Fabric managed clusters by default configure one managed disk. By configuring the following optional property and values, you can add more managed disks to node types within a cluster. You are able to specify the drive letter, disk type, and size per disk.
344344

345345
Configure more managed disks by declaring `additionalDataDisks` property and required parameters in your Resource Manager template as follows:
@@ -348,7 +348,7 @@ Configure more managed disks by declaring `additionalDataDisks` property and req
348348
* Lun must be unique per disk and can not use reserved lun 0
349349
* Disk letter cannot use reserved letters C or D and cannot be modified once created. S will be used as default if not specified.
350350
* Must specify a [supported disk type](how-to-managed-cluster-managed-disk.md)
351-
* The Service Fabric managed cluster resource apiVersion must be **2021-11-01-preview** or later.
351+
* The Service Fabric managed cluster resource apiVersion should be **2022-01-01** or later.
352352

353353
```json
354354
{
@@ -369,12 +369,12 @@ Configure more managed disks by declaring `additionalDataDisks` property and req
369369

370370
See [full list of parameters available](/azure/templates/microsoft.servicefabric/2021-11-01-preview/managedclusters)
371371

372-
## Configure the Service Fabric data disk drive letter (preview)
372+
## Configure the Service Fabric data disk drive letter
373373
Service Fabric managed clusters by default configure a Service Fabric data disk and automatically configure the drive letter on all nodes of a node type. By configuring this optional property and value, you can specify and retrieve the Service Fabric data disk letter if you have specific requirements for drive letter mapping.
374374

375375
**Feature Requirements**
376376
* Disk letter cannot use reserved letters C or D and cannot be modified once created. S will be used as default if not specified.
377-
* The Service Fabric managed cluster resource apiVersion must be **2021-11-01-preview** or later.
377+
* The Service Fabric managed cluster resource apiVersion should be **2022-01-01** or later.
378378

379379
```json
380380
{

0 commit comments

Comments
 (0)