-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added 1-NT managed cluster with MI template
- Loading branch information
Nicolas Oman
committed
Nov 24, 2020
1 parent
62a3eaa
commit 4c52f2b
Showing
3 changed files
with
196 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Standard SKU Service Fabric managed cluster, 1 node type | ||
|
||
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fservice-fabric-cluster-templates%2Fmaster%2FSF-Managed-Standard-SKU-1-NT-MI%2Fazuredeploy.json" target="_blank"> | ||
<img src="http://azuredeploy.net/deploybutton.png"/> | ||
</a> | ||
<a href="http://armviz.io/#/?load=https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fservice-fabric-cluster-templates%2Fmaster%2FSF-Managed-Standard-SKU-1-NT-MI%2Fazuredeploy.json" target="_blank"> | ||
<img src="http://armviz.io/visualizebutton.png"/> | ||
</a> | ||
|
||
This template allows you to deploy a Service Fabric managed cluster using the *Standard* SKU. This cluster contains a single node type running *Windows Server 2019 Datacenter* on a *Standard_D2_v2* size virtual machine scale set with a user-assigned managed identity. | ||
|
||
## Resources | ||
|
||
For more info, see: | ||
|
||
- [Service Fabric managed cluster quickstart](https://docs.microsoft.com/azure/service-fabric/how-to-managed-identity-managed-cluster-vmss) for a walkthrough of the ARM template. | ||
|
||
- [Service Fabric managed cluster overview](https://docs.microsoft.com/azure/service-fabric/overview-managed-cluster) for more details on cluster SKUs. | ||
|
||
- [Service Fabric managed cluster template format](https://docs.microsoft.com/azure/templates/microsoft.servicefabric/2020-01-01-preview/managedclusters) for more details on modifying this ARM template to meet your requirements. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
{ | ||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"clusterName": { | ||
"type": "string", | ||
"minLength": 4, | ||
"maxLength": 23, | ||
"metadata": { | ||
"description": "Name of your cluster - Between 3 and 23 characters. Letters and numbers only" | ||
} | ||
}, | ||
"clusterSku": { | ||
"type": "string", | ||
"allowedValues": [ | ||
"Basic", | ||
"Standard" | ||
], | ||
"defaultValue": "Standard" | ||
}, | ||
"adminUserName": { | ||
"type": "string", | ||
"defaultValue": "vmadmin" | ||
}, | ||
"adminPassword": { | ||
"type": "securestring" | ||
}, | ||
"clientCertificateThumbprint": { | ||
"type": "string" | ||
}, | ||
"nodeTypeName": { | ||
"type": "string", | ||
"maxLength": 9, | ||
"defaultValue": "NT1" | ||
}, | ||
"vmImagePublisher": { | ||
"type": "string", | ||
"defaultValue": "MicrosoftWindowsServer" | ||
}, | ||
"vmImageOffer": { | ||
"type": "string", | ||
"defaultValue": "WindowsServer" | ||
}, | ||
"vmImageSku": { | ||
"type": "string", | ||
"defaultValue": "2019-Datacenter" | ||
}, | ||
"vmImageVersion": { | ||
"type": "string", | ||
"defaultValue": "latest" | ||
}, | ||
"vmSize": { | ||
"type": "string", | ||
"defaultValue": "Standard_D2_v2" | ||
}, | ||
"vmInstanceCount": { | ||
"type": "int", | ||
"defaultValue": 5 | ||
}, | ||
"dataDiskSizeGB": { | ||
"type": "int", | ||
"defaultValue": 120 | ||
}, | ||
"userAssignedIdentityName": { | ||
"defaultValue": "SFMC-id", | ||
"type": "String" | ||
}, | ||
"vmIdentityRoleNameGuid": { | ||
"defaultValue": "[newGuid()]", | ||
"type": "String" | ||
} | ||
}, | ||
"variables": { | ||
"sfApiVersion": "2020-01-01-preview" | ||
}, | ||
"resources": [ | ||
{ | ||
"apiVersion": "[variables('sfApiVersion')]", | ||
"type": "Microsoft.ServiceFabric/managedclusters", | ||
"name": "[parameters('clusterName')]", | ||
"location": "[resourcegroup().location]", | ||
"sku": { | ||
"name" : "[parameters('clusterSku')]" | ||
}, | ||
"properties": { | ||
"dnsName": "[toLower(parameters('clusterName'))]", | ||
"adminUserName": "[parameters('adminUserName')]", | ||
"adminPassword": "[parameters('adminPassword')]", | ||
"clientConnectionPort": 19000, | ||
"httpGatewayConnectionPort": 19080, | ||
"clients" : [ | ||
{ | ||
"isAdmin" : true, | ||
"thumbprint" : "[parameters('clientCertificateThumbprint')]" | ||
} | ||
], | ||
"loadBalancingRules": [ | ||
{ | ||
"frontendPort": 8080, | ||
"backendPort": 8080, | ||
"protocol": "tcp", | ||
"probeProtocol": "tcp" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "Microsoft.ManagedIdentity/userAssignedIdentities", | ||
"name": "[parameters('userAssignedIdentityName')]", | ||
"apiVersion": "2018-11-30", | ||
"location": "[resourceGroup().location]" | ||
}, | ||
{ | ||
"type": "Microsoft.Authorization/roleAssignments", | ||
"apiVersion": "2020-04-01-preview", | ||
"name": "[parameters('vmIdentityRoleNameGuid')]", | ||
"scope": "[concat('Microsoft.ManagedIdentity/userAssignedIdentities', '/', parameters('userAssignedIdentityName'))]", | ||
"dependsOn": [ | ||
"[concat('Microsoft.ManagedIdentity/userAssignedIdentities/', parameters('userAssignedIdentityName'))]" | ||
], | ||
"properties": { | ||
"roleDefinitionId": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/', 'f1a07417-d97a-45cb-824c-7a7467783830')]", | ||
"principalId": "fbc587f2-66f5-4459-a027-bcd908b9d278" | ||
} | ||
}, | ||
{ | ||
"apiVersion": "[variables('sfApiVersion')]", | ||
"type": "Microsoft.ServiceFabric/managedclusters/nodetypes", | ||
"name": "[concat(parameters('clusterName'), '/', parameters('nodeTypeName'))]", | ||
"location": "[resourcegroup().location]", | ||
"dependsOn": [ | ||
"[concat('Microsoft.ServiceFabric/managedclusters/', parameters('clusterName'))]" | ||
], | ||
"properties": { | ||
"isPrimary": true, | ||
"vmImagePublisher": "[parameters('vmImagePublisher')]", | ||
"vmImageOffer": "[parameters('vmImageOffer')]", | ||
"vmImageSku": "[parameters('vmImageSku')]", | ||
"vmImageVersion": "[parameters('vmImageVersion')]", | ||
"vmSize": "[parameters('vmSize')]", | ||
"vmInstanceCount": "[parameters('vmInstanceCount')]", | ||
"dataDiskSizeGB": "[parameters('dataDiskSizeGB')]", | ||
"vmManagedIdentity": { | ||
"userAssignedIdentities": [ | ||
"[resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', parameters('userAssignedIdentityName'))]" | ||
] | ||
} | ||
} | ||
} | ||
], | ||
"outputs": { | ||
"serviceFabricExplorer": { | ||
"value": "[concat('https://', reference(parameters('clusterName')).fqdn, ':', reference(parameters('clusterName')).httpGatewayConnectionPort)]", | ||
"type": "string" | ||
}, | ||
"clientConnectionEndpoint": { | ||
"value": "[concat(reference(parameters('clusterName')).fqdn, ':', reference(parameters('clusterName')).clientConnectionPort)]", | ||
"type": "string" | ||
}, | ||
"clusterProperties": { | ||
"value": "[reference(parameters('clusterName'))]", | ||
"type": "object" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"$schema": "https://aka.ms/azure-quickstart-templates-metadata-schema#", | ||
"type": "QuickStart", | ||
"itemDisplayName": "Deploy a Standard SKU Service Fabric managed cluster with a managed identity", | ||
"description": "This template takes a minimum set of parameters and deploys a Standard SKU Service Fabric managed cluster with 1 node type and a managed identity.", | ||
"summary": "This template takes a minimum set of parameters and deploys a Standard SKU Service Fabric managed cluster with 1 node type and a managed identity.", | ||
"githubUsername": "nickomang", | ||
"dateUpdated": "2020-11-24" | ||
} | ||
|
||
|