You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -72,8 +73,9 @@ The following are the property descriptions:
72
73
| **Name** | **Allowed Values** | **Guidance or Short Description** |
73
74
| --- | --- | --- | --- |
74
75
| name | string | Unique name for extension |
75
-
| type | "ServiceFabricLinuxNode" or "ServiceFabricWindowsNode" | Identifies OS Service Fabric is bootstrapping to |
76
-
| autoUpgradeMinorVersion | true or false | Enable Auto Upgrade of SF Runtime Minor Versions |
76
+
| type | "ServiceFabricLinuxNode" or "ServiceFabricNode" | Identifies OS Service Fabric is bootstrapping to |
77
+
| autoUpgradeMinorVersion | true or false | Use newest minor version of extension at deployment time |
78
+
| enableAutomaticUpgrade | true or false | Automatically upgrade extension once a non-major version is available. Only available for type ServiceFabricLinuxNode |
77
79
| publisher | Microsoft.Azure.ServiceFabric | Name of the Service Fabric extension publisher |
78
80
| clusterEndpoint | string | URI:PORT to Management endpoint |
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-tutorial-create-vnet-and-linux-cluster.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,43 @@ The names of the virtual network and subnet are declared in the template paramet
80
80
81
81
If any other application ports are needed, then you will need to adjust the Microsoft.Network/loadBalancers resource to allow the traffic in.
82
82
83
+
### Service Fabric Extension
84
+
85
+
In the **Microsoft.Compute/virtualMachineScaleSets** resource, the Service Fabric Linux extension is configured. This extension is used to bootstrap Service Fabric to Azure Virtual Machines and configure Node Security.
86
+
87
+
The following is a template snippet for the Service Fabric Linux extension:
The **AzureDeploy.Parameters** file declares many values used to deploy the cluster and associated resources. Some of the parameters that you might need to modify for your deployment:
0 commit comments