Skip to content

Commit 42dfd66

Browse files
Merge pull request #204750 from tomvcassidy/metadata2
Metadata Changes for SF
2 parents 4732656 + 4b35554 commit 42dfd66

File tree

60 files changed

+406
-222
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+406
-222
lines changed

articles/service-fabric/quickstart-guest-app.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
title: Quickly deploy an existing app to a cluster
33
description: Use an Azure Service Fabric cluster to host an existing Node.js application with Visual Studio.
4-
5-
ms.topic: conceptual
6-
ms.date: 12/06/2017
7-
ms.custom: devx-track-js
4+
ms.topic: how-to
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
810
---
911

1012
# Host a Node.js application on Azure Service Fabric
@@ -13,7 +15,7 @@ This quickstart helps you deploy an existing application (Node.js in this exampl
1315

1416
## Prerequisites
1517

16-
Before you get started, make sure that you have [set up your development environment](service-fabric-get-started.md). Which includes installing the Service Fabric SDK and Visual Studio 2019 or 2015.
18+
Before you get started, make sure that you have [set up your development environment](service-fabric-get-started.md), which includes installing the Service Fabric SDK and Visual Studio 2019 or 2015.
1719

1820
You also need to have an existing Node.js application for deployment. This quickstart uses a simple Node.js website that can be downloaded [here][download-sample]. Extract this file to your `<path-to-project>\ApplicationPackageRoot\<package-name>\Code\` folder after you create the project in the next step.
1921

articles/service-fabric/quickstart-managed-cluster-template.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
title: Deploy a Service Fabric managed cluster using Azure Resource Manager
33
description: Learn how to create a Service Fabric managed cluster with an Azure Resource Manager template
44
ms.topic: quickstart
5-
ms.date: 5/10/2021
6-
ms.custom: mode-other
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
710
---
811

912
# Quickstart: Deploy a Service Fabric managed cluster with an Azure Resource Manager template
1013

11-
Service Fabric managed clusters are an evolution of the Azure Service Fabric cluster resource model that streamlines your deployment and cluster management experience. Service Fabric managed clusters are a fully encapsulated resource that enable you to deploy a single Service Fabric cluster resource rather than having to deploy all of the underlying resources that make up a Service Fabric cluster. This article describes how to do deploy a Service Fabric managed cluster for testing in Azure using an Azure Resource Manager template (ARM template).
14+
Service Fabric managed clusters are an evolution of the Azure Service Fabric cluster resource model that streamlines your deployment and cluster management experience. A Service Fabric managed cluster is a fully encapsulated resource that enables you to deploy a single Service Fabric cluster resource rather than having to deploy all of the underlying resources that make up a Service Fabric cluster. This article describes how to do deploy a Service Fabric managed cluster for testing in Azure using an Azure Resource Manager template (ARM template).
1215

1316
The three-node Basic SKU cluster deployed in this tutorial is only intended to be used for instructional purposes (rather than production workloads). For further information, see [Service Fabric managed cluster SKUs](overview-managed-cluster.md#service-fabric-managed-cluster-skus).
1417

articles/service-fabric/release-notes.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
---
22
title: Azure Service Fabric releases
33
description: Release notes for Azure Service Fabric. Includes information on the latest features and improvements in Service Fabric.
4-
ms.date: 04/13/2021
5-
ms.topic: conceptual
4+
ms.date: 07/14/2022
5+
ms.topic: reference
6+
ms.author: tomcassidy
7+
author: tomvcassidy
8+
ms.service: service-fabric
9+
services: service-fabric
610
hide_comments: true
711
hideEdit: true
812
---
@@ -25,7 +29,7 @@ We are excited to announce that 9.0 release of the Service Fabric runtime has st
2529
### Key announcements
2630
- **General Availability** Support for .NET 6.0
2731
- **General Availability** Support for Ubuntu 20.04
28-
- **General Availability** Support for Multi-AZ within a single VM Scale Set (VMSS)
32+
- **General Availability** Support for Multi-AZ within a single virtual machine scale set
2933
- Added support for IHost, IHostBuilder and Minimal Hosting Model
3034
- Enabling opt-in option for Data Contract Serialization (DCS) based remoting exception
3135
- Support creation of End-to-End Developer Experience for Linux development on Windows using WSL2

articles/service-fabric/run-to-completion.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
22
title: RunToCompletion semantics and specifications
33
description: Learn about Service Fabric RunToCompletion semantics and specifications, and see complete code examples and considerations.
4-
author: shsha-msft
54
ms.topic: conceptual
6-
ms.date: 06/08/2022
7-
ms.author: shsha
8-
ms.custom: kr2b-contr-experiment
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
910
---
11+
1012
# RunToCompletion
1113

1214
Starting with version 7.1, Service Fabric supports **RunToCompletion** semantics for [containers][containers-introduction-link] and [guest executable applications][guest-executables-introduction-link]. These semantics enable applications and services that complete a task and exit, in contrast to always running applications and services.

articles/service-fabric/samples-cli.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
title: Azure CLI (az) and Azure Service Fabric CLI (sfctl) Samples
33
description: Azure CLI (az) and Azure Service Fabric CLI (sfctl) Samples on managing clusters, applications, and services.
4-
54
ms.topic: sample
6-
ms.date: 04/09/2018
7-
ms.custom: devx-track-azurecli
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
810
---
911

1012
# Azure CLI (az) and Azure Service Fabric CLI (sfctl) Samples

articles/service-fabric/security-controls-policy.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Azure Policy Regulatory Compliance controls for Azure Service Fabric
33
description: Lists Azure Policy Regulatory Compliance controls available for Azure Service Fabric. These built-in policy definitions provide common approaches to managing the compliance of your Azure resources.
4-
ms.date: 07/06/2022
5-
ms.topic: sample
6-
author: erikadoyle
7-
ms.author: edoyle
4+
ms.topic: conceptual
5+
ms.author: tomcassidy
6+
author: tomvcassidy
87
ms.service: service-fabric
9-
ms.custom: subject-policy-compliancecontrols
8+
services: service-fabric
9+
ms.date: 07/14/2022
1010
---
1111
# Azure Policy Regulatory Compliance controls for Azure Service Fabric
1212

articles/service-fabric/service-fabric-api-management-overview.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
title: Azure Service Fabric with API Management overview
33
description: This article is an introduction to using Azure API Management as a gateway to your Service Fabric applications.
44
ms.topic: conceptual
5-
ms.date: 06/22/2017
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
610
---
711

812
# Service Fabric with Azure API Management overview
@@ -42,7 +46,7 @@ In the simplest case, traffic is forwarded to a stateless service instance. To a
4246

4347
**Example**
4448

45-
In the following scenario, a Service Fabric application contains a stateless service named `fabric:/app/fooservice`, that exposes an internal HTTP API. The service instance name is well known and can be hard-coded directly in the API Management inbound processing policy.
49+
In the following scenario, a Service Fabric application contains a stateless service named `fabric:/app/fooservice` that exposes an internal HTTP API. The service instance name is well known and can be hard-coded directly in the API Management inbound processing policy.
4650

4751
![Diagram that shows a Service Fabric application contains a stateless service that exposes an internal HTTP API.][sf-apim-static-stateless]
4852

articles/service-fabric/service-fabric-application-and-service-manifests.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
---
22
title: Describing Azure Service Fabric apps and services
33
description: Describes how manifests are used to describe Service Fabric applications and services.
4-
54
ms.topic: conceptual
6-
ms.date: 8/12/2019
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
710
---
11+
812
# Service Fabric application and service manifests
913
This article describes how Service Fabric applications and services are defined and versioned using the ApplicationManifest.xml and ServiceManifest.xml files. For more detailed examples, see [application and service manifest examples](service-fabric-manifest-examples.md). The XML schema for these manifest files is documented in [ServiceFabricServiceModel.xsd schema documentation](service-fabric-service-model-schema.md).
1014

articles/service-fabric/service-fabric-application-and-service-security.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
---
22
title: Learn about Azure Service Fabric application security
33
description: An overview of how to securely run microservices applications on Service Fabric. Learn how to run services and startup script under different security accounts, authenticate and authorize users, manage application secrets, secure service communications, use an API gateway, and secure application data at rest.
4-
54
ms.topic: conceptual
6-
ms.date: 03/16/2018
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
710
---
11+
812
# Service Fabric application and service security
913
A microservices architecture can bring [many benefits](service-fabric-overview-microservices.md). Managing the security of microservices, however, is a challenge and different than managing traditional monolithic applications security.
1014

articles/service-fabric/service-fabric-application-arm-resource.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
---
22
title: Deploy and upgrade with Azure Resource Manager
33
description: Learn how to deploy applications and services to a Service Fabric cluster using an Azure Resource Manager template.
4-
5-
ms.topic: conceptual
6-
ms.date: 12/06/2017
4+
ms.topic: how-to
5+
ms.author: tomcassidy
6+
author: tomvcassidy
7+
ms.service: service-fabric
8+
services: service-fabric
9+
ms.date: 07/14/2022
710
---
11+
812
# Manage applications and services as Azure Resource Manager resources
913

1014
You can deploy applications and services onto your Service Fabric cluster via Azure Resource Manager. This means that instead of deploying and managing applications via PowerShell or CLI after having to wait for the cluster to be ready, you can now express applications and services in JSON and deploy them in the same Resource Manager template as your cluster. The process of application registration, provisioning, and deployment all happens in one step.

0 commit comments

Comments
 (0)