Added Service Fabric deployment scripts & docu
This commit is contained in:
parent
8559cfaca8
commit
8f581d3f17
24
deploy/az/servicefabric/readme.md
Normal file
24
deploy/az/servicefabric/readme.md
Normal file
@ -0,0 +1,24 @@
|
||||
# Deploying Azure Service Fabric
|
||||
|
||||
The ARM template `servicefabricdeploy.json` and its parameter file (`servicefabricdeploy.parameters.json`) are used to create a service fabric cluster environment.
|
||||
|
||||
## Editing servicefabricdeploy.parameters.json file
|
||||
|
||||
You can edit the `servicefabricdeploy.parameters.parameters.json` file to set your values, but is not needed.
|
||||
|
||||
## Deploy the template
|
||||
|
||||
Once parameter file is edited you can deploy it using [create-resources script](../readme.md).
|
||||
|
||||
i. e. if you are in windows, to deploy sql databases in a new resourcegroup located in westus, go to `deploy\az` folder and type:
|
||||
|
||||
```
|
||||
create-resources.cmd servicefabric\servicefabricdeploy newResourceGroup -c westus
|
||||
```
|
||||
## Deploy eShopOnServiceFabric with Visual Studio.
|
||||
|
||||
Alternatively, instead of using ARM templates, you can deploy eShop on service fabric directly by publishing the project eShopOnServiceFabric in eShopOnContainers-ServicesAndWebApps.sln with Visual Studio publish tool.
|
||||
|
||||
|
||||
|
||||
|
590
deploy/az/servicefabric/servicefabricdeploy.json
Normal file
590
deploy/az/servicefabric/servicefabricdeploy.json
Normal file
@ -0,0 +1,590 @@
|
||||
{
|
||||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
|
||||
"contentVersion": "1.0.0.0",
|
||||
"parameters": {
|
||||
"clusterLocation": {
|
||||
"type": "string",
|
||||
"metadata": {
|
||||
"description": "Location of the Cluster"
|
||||
}
|
||||
},
|
||||
"clusterName": {
|
||||
"type": "string",
|
||||
"defaultValue": "Cluster",
|
||||
"metadata": {
|
||||
"description": "Name of your cluster - Between 3 and 23 characters. Letters and numbers only"
|
||||
}
|
||||
},
|
||||
"nt0applicationStartPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 20000
|
||||
},
|
||||
"nt0applicationEndPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 30000
|
||||
},
|
||||
"nt0ephemeralStartPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 49152
|
||||
},
|
||||
"nt0ephemeralEndPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 65534
|
||||
},
|
||||
"nt0fabricTcpGatewayPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 19000
|
||||
},
|
||||
"nt0fabricHttpGatewayPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 19080
|
||||
},
|
||||
"nt0reverseProxyEndpointPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 19081
|
||||
},
|
||||
"subnet0Name": {
|
||||
"type": "string",
|
||||
"defaultValue": "Subnet-0"
|
||||
},
|
||||
"subnet0Prefix": {
|
||||
"type": "string",
|
||||
"defaultValue": "10.0.0.0/24"
|
||||
},
|
||||
"computeLocation": {
|
||||
"type": "string"
|
||||
},
|
||||
"publicIPAddressName": {
|
||||
"type": "string",
|
||||
"defaultValue": "PublicIP-VM"
|
||||
},
|
||||
"publicIPAddressType": {
|
||||
"type": "string",
|
||||
"allowedValues": [
|
||||
"Dynamic"
|
||||
],
|
||||
"defaultValue": "Dynamic"
|
||||
},
|
||||
"vmStorageAccountContainerName": {
|
||||
"type": "string",
|
||||
"defaultValue": "vhds"
|
||||
},
|
||||
"adminUserName": {
|
||||
"type": "string",
|
||||
"defaultValue": "testadm",
|
||||
"metadata": {
|
||||
"description": "Remote desktop user Id"
|
||||
}
|
||||
},
|
||||
"adminPassword": {
|
||||
"type": "securestring",
|
||||
"metadata": {
|
||||
"description": "Remote desktop user password. Must be a strong password"
|
||||
}
|
||||
},
|
||||
"virtualNetworkName": {
|
||||
"type": "string",
|
||||
"defaultValue": "VNet"
|
||||
},
|
||||
"addressPrefix": {
|
||||
"type": "string",
|
||||
"defaultValue": "10.0.0.0/16"
|
||||
},
|
||||
"dnsName": {
|
||||
"type": "string"
|
||||
},
|
||||
"nicName": {
|
||||
"type": "string",
|
||||
"defaultValue": "NIC"
|
||||
},
|
||||
"lbName": {
|
||||
"type": "string",
|
||||
"defaultValue": "LoadBalancer"
|
||||
},
|
||||
"lbIPName": {
|
||||
"type": "string",
|
||||
"defaultValue": "PublicIP-LB-FE"
|
||||
},
|
||||
"overProvision": {
|
||||
"type": "string",
|
||||
"defaultValue": "false"
|
||||
},
|
||||
"vmImagePublisher": {
|
||||
"type": "string",
|
||||
"defaultValue": "MicrosoftWindowsServer"
|
||||
},
|
||||
"vmImageOffer": {
|
||||
"type": "string",
|
||||
"defaultValue": "WindowsServer"
|
||||
},
|
||||
"vmImageSku": {
|
||||
"type": "string",
|
||||
"defaultValue": "2012-R2-Datacenter"
|
||||
},
|
||||
"vmImageVersion": {
|
||||
"type": "string",
|
||||
"defaultValue": "latest"
|
||||
},
|
||||
"storageAccountType": {
|
||||
"type": "string",
|
||||
"allowedValues": [
|
||||
"Standard_LRS",
|
||||
"Standard_GRS"
|
||||
],
|
||||
"defaultValue": "Standard_LRS",
|
||||
"metadata": {
|
||||
"description": "Replication option for the VM image storage account"
|
||||
}
|
||||
},
|
||||
"supportLogStorageAccountType": {
|
||||
"type": "string",
|
||||
"allowedValues": [
|
||||
"Standard_LRS",
|
||||
"Standard_GRS"
|
||||
],
|
||||
"defaultValue": "Standard_LRS",
|
||||
"metadata": {
|
||||
"description": "Replication option for the support log storage account"
|
||||
}
|
||||
},
|
||||
"supportLogStorageAccountName": {
|
||||
"type": "string",
|
||||
"defaultValue": "[toLower( concat('sflogs', uniqueString(resourceGroup().id),'2'))]",
|
||||
"metadata": {
|
||||
"description": "Name for the storage account that contains support logs from the cluster"
|
||||
}
|
||||
},
|
||||
"nt0InstanceCount": {
|
||||
"type": "int",
|
||||
"defaultValue": 1,
|
||||
"metadata": {
|
||||
"description": "Instance count for node type"
|
||||
}
|
||||
},
|
||||
"vmNodeType0Name": {
|
||||
"type": "string",
|
||||
"defaultValue": "primary",
|
||||
"maxLength": 9
|
||||
},
|
||||
"vmNodeType0Size": {
|
||||
"type": "string",
|
||||
"defaultValue": "Standard_D1_v2"
|
||||
},
|
||||
"SFReverseProxyPort": {
|
||||
"type": "int",
|
||||
"defaultValue": 19081,
|
||||
"metadata": {
|
||||
"description": "Endpoint for Service Fabric Reverse proxy"
|
||||
}
|
||||
}
|
||||
},
|
||||
"variables": {
|
||||
"vmssApiVersion": "2017-03-30",
|
||||
"lbApiVersion": "2015-06-15",
|
||||
"vNetApiVersion": "2015-06-15",
|
||||
"storageApiVersion": "2016-01-01",
|
||||
"publicIPApiVersion": "2015-06-15",
|
||||
"vnetID": "[resourceId('Microsoft.Network/virtualNetworks',parameters('virtualNetworkName'))]",
|
||||
"subnet0Ref": "[concat(variables('vnetID'),'/subnets/',parameters('subnet0Name'))]",
|
||||
"lbID0": "[resourceId('Microsoft.Network/loadBalancers', concat('LB','-', parameters('clusterName'),'-',parameters('vmNodeType0Name')))]",
|
||||
"lbIPConfig0": "[concat(variables('lbID0'),'/frontendIPConfigurations/LoadBalancerIPConfig')]",
|
||||
"lbPoolID0": "[concat(variables('lbID0'),'/backendAddressPools/LoadBalancerBEAddressPool')]",
|
||||
"lbProbeID0": "[concat(variables('lbID0'),'/probes/FabricGatewayProbe')]",
|
||||
"lbHttpProbeID0": "[concat(variables('lbID0'),'/probes/FabricHttpGatewayProbe')]",
|
||||
"lbNatPoolID0": "[concat(variables('lbID0'),'/inboundNatPools/LoadBalancerBEAddressNatPool')]",
|
||||
"vmStorageAccountName0": "[toLower(concat(uniqueString(resourceGroup().id), '1', '0' ))]",
|
||||
"uniqueStringArray0": [
|
||||
"[concat(variables('vmStorageAccountName0'), '0')]",
|
||||
"[concat(variables('vmStorageAccountName0'), '1')]",
|
||||
"[concat(variables('vmStorageAccountName0'), '2')]",
|
||||
"[concat(variables('vmStorageAccountName0'), '3')]",
|
||||
"[concat(variables('vmStorageAccountName0'), '4')]"
|
||||
]
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
"apiVersion": "[variables('storageApiVersion')]",
|
||||
"type": "Microsoft.Storage/storageAccounts",
|
||||
"name": "[parameters('supportLogStorageAccountName')]",
|
||||
"location": "[parameters('computeLocation')]",
|
||||
"dependsOn": [],
|
||||
"properties": {},
|
||||
"kind": "Storage",
|
||||
"sku": {
|
||||
"name": "[parameters('supportLogStorageAccountType')]"
|
||||
},
|
||||
"tags": {
|
||||
"resourceType": "Service Fabric",
|
||||
"clusterName": "[parameters('clusterName')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apiVersion": "[variables('vNetApiVersion')]",
|
||||
"type": "Microsoft.Network/virtualNetworks",
|
||||
"name": "[parameters('virtualNetworkName')]",
|
||||
"location": "[parameters('computeLocation')]",
|
||||
"dependsOn": [],
|
||||
"properties": {
|
||||
"addressSpace": {
|
||||
"addressPrefixes": [
|
||||
"[parameters('addressPrefix')]"
|
||||
]
|
||||
},
|
||||
"subnets": [
|
||||
{
|
||||
"name": "[parameters('subnet0Name')]",
|
||||
"properties": {
|
||||
"addressPrefix": "[parameters('subnet0Prefix')]"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"tags": {
|
||||
"resourceType": "Service Fabric",
|
||||
"clusterName": "[parameters('clusterName')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apiVersion": "[variables('publicIPApiVersion')]",
|
||||
"type": "Microsoft.Network/publicIPAddresses",
|
||||
"name": "[concat(parameters('lbIPName'),'-','0')]",
|
||||
"location": "[parameters('computeLocation')]",
|
||||
"properties": {
|
||||
"dnsSettings": {
|
||||
"domainNameLabel": "[parameters('dnsName')]"
|
||||
},
|
||||
"publicIPAllocationMethod": "Dynamic"
|
||||
},
|
||||
"tags": {
|
||||
"resourceType": "Service Fabric",
|
||||
"clusterName": "[parameters('clusterName')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apiVersion": "[variables('lbApiVersion')]",
|
||||
"type": "Microsoft.Network/loadBalancers",
|
||||
"name": "[concat('LB','-', parameters('clusterName'),'-',parameters('vmNodeType0Name'))]",
|
||||
"location": "[parameters('computeLocation')]",
|
||||
"dependsOn": [
|
||||
"[concat('Microsoft.Network/publicIPAddresses/',concat(parameters('lbIPName'),'-','0'))]"
|
||||
],
|
||||
"properties": {
|
||||
"frontendIPConfigurations": [
|
||||
{
|
||||
"name": "LoadBalancerIPConfig",
|
||||
"properties": {
|
||||
"publicIPAddress": {
|
||||
"id": "[resourceId('Microsoft.Network/publicIPAddresses',concat(parameters('lbIPName'),'-','0'))]"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"backendAddressPools": [
|
||||
{
|
||||
"name": "LoadBalancerBEAddressPool",
|
||||
"properties": {}
|
||||
}
|
||||
],
|
||||
"loadBalancingRules": [
|
||||
{
|
||||
"name": "LBRule",
|
||||
"properties": {
|
||||
"backendAddressPool": {
|
||||
"id": "[variables('lbPoolID0')]"
|
||||
},
|
||||
"backendPort": "[parameters('nt0fabricTcpGatewayPort')]",
|
||||
"enableFloatingIP": "false",
|
||||
"frontendIPConfiguration": {
|
||||
"id": "[variables('lbIPConfig0')]"
|
||||
},
|
||||
"frontendPort": "[parameters('nt0fabricTcpGatewayPort')]",
|
||||
"idleTimeoutInMinutes": "5",
|
||||
"probe": {
|
||||
"id": "[variables('lbProbeID0')]"
|
||||
},
|
||||
"protocol": "tcp"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "LBHttpRule",
|
||||
"properties": {
|
||||
"backendAddressPool": {
|
||||
"id": "[variables('lbPoolID0')]"
|
||||
},
|
||||
"backendPort": "[parameters('nt0fabricHttpGatewayPort')]",
|
||||
"enableFloatingIP": "false",
|
||||
"frontendIPConfiguration": {
|
||||
"id": "[variables('lbIPConfig0')]"
|
||||
},
|
||||
"frontendPort": "[parameters('nt0fabricHttpGatewayPort')]",
|
||||
"idleTimeoutInMinutes": "5",
|
||||
"probe": {
|
||||
"id": "[variables('lbHttpProbeID0')]"
|
||||
},
|
||||
"protocol": "tcp"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "LBSFReverseProxyRule",
|
||||
"properties": {
|
||||
"backendAddressPool": {
|
||||
"id": "[variables('lbPoolID0')]"
|
||||
},
|
||||
"backendPort": "[parameters('SFReverseProxyPort')]",
|
||||
"enableFloatingIP": "false",
|
||||
"frontendIPConfiguration": {
|
||||
"id": "[variables('lbIPConfig0')]"
|
||||
},
|
||||
"frontendPort": "[parameters('SFReverseProxyPort')]",
|
||||
"idleTimeoutInMinutes": "5",
|
||||
"probe": {
|
||||
"id": "[concat(variables('lbID0'),'/probes/SFReverseProxyProbe')]"
|
||||
},
|
||||
"protocol": "tcp"
|
||||
}
|
||||
}
|
||||
],
|
||||
"probes": [
|
||||
{
|
||||
"name": "FabricGatewayProbe",
|
||||
"properties": {
|
||||
"intervalInSeconds": 5,
|
||||
"numberOfProbes": 2,
|
||||
"port": "[parameters('nt0fabricTcpGatewayPort')]",
|
||||
"protocol": "tcp"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "FabricHttpGatewayProbe",
|
||||
"properties": {
|
||||
"intervalInSeconds": 5,
|
||||
"numberOfProbes": 2,
|
||||
"port": "[parameters('nt0fabricHttpGatewayPort')]",
|
||||
"protocol": "tcp"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SFReverseProxyProbe",
|
||||
"properties": {
|
||||
"intervalInSeconds": 5,
|
||||
"numberOfProbes": 2,
|
||||
"port": "[parameters('SFReverseProxyPort')]",
|
||||
"protocol": "tcp"
|
||||
}
|
||||
}
|
||||
],
|
||||
"inboundNatPools": [
|
||||
{
|
||||
"name": "LoadBalancerBEAddressNatPool",
|
||||
"properties": {
|
||||
"backendPort": "3389",
|
||||
"frontendIPConfiguration": {
|
||||
"id": "[variables('lbIPConfig0')]"
|
||||
},
|
||||
"frontendPortRangeEnd": "4500",
|
||||
"frontendPortRangeStart": "3389",
|
||||
"protocol": "tcp"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"tags": {
|
||||
"resourceType": "Service Fabric",
|
||||
"clusterName": "[parameters('clusterName')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apiVersion": "[variables('storageApiVersion')]",
|
||||
"type": "Microsoft.Storage/storageAccounts",
|
||||
"name": "[variables('uniqueStringArray0')[copyIndex()]]",
|
||||
"location": "[parameters('computeLocation')]",
|
||||
"dependsOn": [],
|
||||
"properties": {},
|
||||
"copy": {
|
||||
"name": "storageLoop",
|
||||
"count": 5
|
||||
},
|
||||
"kind": "Storage",
|
||||
"sku": {
|
||||
"name": "[parameters('storageAccountType')]"
|
||||
},
|
||||
"tags": {
|
||||
"resourceType": "Service Fabric",
|
||||
"clusterName": "[parameters('clusterName')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apiVersion": "[variables('vmssApiVersion')]",
|
||||
"type": "Microsoft.Compute/virtualMachineScaleSets",
|
||||
"name": "[parameters('vmNodeType0Name')]",
|
||||
"location": "[parameters('computeLocation')]",
|
||||
"dependsOn": [
|
||||
"[concat('Microsoft.Network/virtualNetworks/', parameters('virtualNetworkName'))]",
|
||||
"[concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[0])]",
|
||||
"[concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[1])]",
|
||||
"[concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[2])]",
|
||||
"[concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[3])]",
|
||||
"[concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[4])]",
|
||||
"[concat('Microsoft.Network/loadBalancers/', concat('LB','-', parameters('clusterName'),'-',parameters('vmNodeType0Name')))]",
|
||||
"[concat('Microsoft.Storage/storageAccounts/', parameters('supportLogStorageAccountName'))]"
|
||||
],
|
||||
"properties": {
|
||||
"overprovision": "[parameters('overProvision')]",
|
||||
"upgradePolicy": {
|
||||
"mode": "Automatic"
|
||||
},
|
||||
"virtualMachineProfile": {
|
||||
"extensionProfile": {
|
||||
"extensions": [
|
||||
{
|
||||
"name": "[concat(parameters('vmNodeType0Name'),'_ServiceFabricNode')]",
|
||||
"properties": {
|
||||
"type": "ServiceFabricNode",
|
||||
"autoUpgradeMinorVersion": true,
|
||||
"protectedSettings": {
|
||||
"StorageAccountKey1": "[listKeys(resourceId('Microsoft.Storage/storageAccounts', parameters('supportLogStorageAccountName')),'2015-05-01-preview').key1]",
|
||||
"StorageAccountKey2": "[listKeys(resourceId('Microsoft.Storage/storageAccounts', parameters('supportLogStorageAccountName')),'2015-05-01-preview').key2]"
|
||||
},
|
||||
"publisher": "Microsoft.Azure.ServiceFabric",
|
||||
"settings": {
|
||||
"clusterEndpoint": "[reference(parameters('clusterName')).clusterEndpoint]",
|
||||
"nodeTypeRef": "[parameters('vmNodeType0Name')]",
|
||||
"dataPath": "D:\\\\SvcFab",
|
||||
"durabilityLevel": "Bronze",
|
||||
"enableParallelJobs": true,
|
||||
"nicPrefixOverride": "[parameters('subnet0Prefix')]"
|
||||
},
|
||||
"typeHandlerVersion": "1.0"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"networkProfile": {
|
||||
"networkInterfaceConfigurations": [
|
||||
{
|
||||
"name": "[concat(parameters('nicName'), '-0')]",
|
||||
"properties": {
|
||||
"ipConfigurations": [
|
||||
{
|
||||
"name": "[concat(parameters('nicName'),'-',0)]",
|
||||
"properties": {
|
||||
"loadBalancerBackendAddressPools": [
|
||||
{
|
||||
"id": "[variables('lbPoolID0')]"
|
||||
}
|
||||
],
|
||||
"loadBalancerInboundNatPools": [
|
||||
{
|
||||
"id": "[variables('lbNatPoolID0')]"
|
||||
}
|
||||
],
|
||||
"subnet": {
|
||||
"id": "[variables('subnet0Ref')]"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"primary": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"osProfile": {
|
||||
"adminPassword": "[parameters('adminPassword')]",
|
||||
"adminUsername": "[parameters('adminUsername')]",
|
||||
"computernamePrefix": "[parameters('vmNodeType0Name')]"
|
||||
},
|
||||
"storageProfile": {
|
||||
"imageReference": {
|
||||
"publisher": "[parameters('vmImagePublisher')]",
|
||||
"offer": "[parameters('vmImageOffer')]",
|
||||
"sku": "[parameters('vmImageSku')]",
|
||||
"version": "[parameters('vmImageVersion')]"
|
||||
},
|
||||
"osDisk": {
|
||||
"caching": "ReadOnly",
|
||||
"createOption": "FromImage",
|
||||
"vhdContainers": [
|
||||
"[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[0]), variables('storageApiVersion')).primaryEndpoints.blob, parameters('vmStorageAccountContainerName'))]",
|
||||
"[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[1]), variables('storageApiVersion')).primaryEndpoints.blob, parameters('vmStorageAccountContainerName'))]",
|
||||
"[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[2]), variables('storageApiVersion')).primaryEndpoints.blob, parameters('vmStorageAccountContainerName'))]",
|
||||
"[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[3]), variables('storageApiVersion')).primaryEndpoints.blob, parameters('vmStorageAccountContainerName'))]",
|
||||
"[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('uniqueStringArray0')[4]), variables('storageApiVersion')).primaryEndpoints.blob, parameters('vmStorageAccountContainerName'))]"
|
||||
],
|
||||
"name": "vmssosdisk"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"sku": {
|
||||
"name": "[parameters('vmNodeType0Size')]",
|
||||
"capacity": "[parameters('nt0InstanceCount')]",
|
||||
"tier": "Standard"
|
||||
},
|
||||
"tags": {
|
||||
"resourceType": "Service Fabric",
|
||||
"clusterName": "[parameters('clusterName')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apiVersion": "2017-07-01-preview",
|
||||
"type": "Microsoft.ServiceFabric/clusters",
|
||||
"name": "[parameters('clusterName')]",
|
||||
"location": "[parameters('clusterLocation')]",
|
||||
"dependsOn": [
|
||||
"[concat('Microsoft.Storage/storageAccounts/', parameters('supportLogStorageAccountName'))]"
|
||||
],
|
||||
"properties": {
|
||||
"clientCertificateCommonNames": [],
|
||||
"clientCertificateThumbprints": [],
|
||||
"clusterCodeVersion": "5.6.231.9494",
|
||||
"clusterState": "Default",
|
||||
"diagnosticsStorageAccountConfig": {
|
||||
"blobEndpoint": "[reference(concat('Microsoft.Storage/storageAccounts/', parameters('supportLogStorageAccountName')), variables('storageApiVersion')).primaryEndpoints.blob]",
|
||||
"protectedAccountKeyName": "StorageAccountKey1",
|
||||
"queueEndpoint": "[reference(concat('Microsoft.Storage/storageAccounts/', parameters('supportLogStorageAccountName')), variables('storageApiVersion')).primaryEndpoints.queue]",
|
||||
"storageAccountName": "[parameters('supportLogStorageAccountName')]",
|
||||
"tableEndpoint": "[reference(concat('Microsoft.Storage/storageAccounts/', parameters('supportLogStorageAccountName')), variables('storageApiVersion')).primaryEndpoints.table]"
|
||||
},
|
||||
"fabricSettings": [],
|
||||
"addonFeatures": [
|
||||
"DnsService"
|
||||
],
|
||||
"managementEndpoint": "[concat('http://',reference(concat(parameters('lbIPName'),'-','0')).dnsSettings.fqdn,':',parameters('nt0fabricHttpGatewayPort'))]",
|
||||
"nodeTypes": [
|
||||
{
|
||||
"name": "[parameters('vmNodeType0Name')]",
|
||||
"applicationPorts": {
|
||||
"endPort": "[parameters('nt0applicationEndPort')]",
|
||||
"startPort": "[parameters('nt0applicationStartPort')]"
|
||||
},
|
||||
"clientConnectionEndpointPort": "[parameters('nt0fabricTcpGatewayPort')]",
|
||||
"durabilityLevel": "Bronze",
|
||||
"ephemeralPorts": {
|
||||
"endPort": "[parameters('nt0ephemeralEndPort')]",
|
||||
"startPort": "[parameters('nt0ephemeralStartPort')]"
|
||||
},
|
||||
"httpGatewayEndpointPort": "[parameters('nt0fabricHttpGatewayPort')]",
|
||||
"isPrimary": true,
|
||||
"reverseProxyEndpointPort": "[parameters('nt0reverseProxyEndpointPort')]",
|
||||
"vmInstanceCount": "[parameters('nt0InstanceCount')]"
|
||||
}
|
||||
],
|
||||
"provisioningState": "Default",
|
||||
"reliabilityLevel": "None",
|
||||
"upgradeMode": "Manual",
|
||||
"vmImage": "Windows"
|
||||
},
|
||||
"tags": {
|
||||
"resourceType": "Service Fabric",
|
||||
"clusterName": "[parameters('clusterName')]"
|
||||
}
|
||||
}
|
||||
],
|
||||
"outputs": {
|
||||
"clusterProperties": {
|
||||
"value": "[reference(parameters('clusterName'))]",
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
66
deploy/az/servicefabric/servicefabricdeploy.parameters.json
Normal file
66
deploy/az/servicefabric/servicefabricdeploy.parameters.json
Normal file
@ -0,0 +1,66 @@
|
||||
{
|
||||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
|
||||
"contentVersion": "1.0.0.0",
|
||||
"parameters": {
|
||||
"clusterName": {
|
||||
"value": "eshoponservicefabric"
|
||||
},
|
||||
"clusterLocation": {
|
||||
"value": "westeurope"
|
||||
},
|
||||
"computeLocation": {
|
||||
"value": "westeurope"
|
||||
},
|
||||
"adminUserName": {
|
||||
"value": "eshop"
|
||||
},
|
||||
"adminPassword": {
|
||||
"value": "YourPassword"
|
||||
},
|
||||
"nicName": {
|
||||
"value": "NIC-eshoponservicefabric"
|
||||
},
|
||||
"publicIPAddressName": {
|
||||
"value": "eshoponservicefabric-PubIP"
|
||||
},
|
||||
"dnsName": {
|
||||
"value": "eshoponservicefabric"
|
||||
},
|
||||
"virtualNetworkName": {
|
||||
"value": "VNet-eshoponservicefabric"
|
||||
},
|
||||
"lbName": {
|
||||
"value": "LB-eshoponservicefabric"
|
||||
},
|
||||
"lbIPName": {
|
||||
"value": "LBIP-eshoponservicefabric"
|
||||
},
|
||||
"supportLogStorageAccountName": {
|
||||
"value": "sflogseshoponservice3296"
|
||||
},
|
||||
"vmImageSku": {
|
||||
"value": "2016-Datacenter-with-Containers"
|
||||
},
|
||||
"nt0ephemeralStartPort": {
|
||||
"value": 49152
|
||||
},
|
||||
"nt0ephemeralEndPort": {
|
||||
"value": 65534
|
||||
},
|
||||
"nt0applicationStartPort": {
|
||||
"value": 20000
|
||||
},
|
||||
"nt0applicationEndPort": {
|
||||
"value": 30000
|
||||
},
|
||||
"nt0fabricTcpGatewayPort": {
|
||||
"value": 19000
|
||||
},
|
||||
"nt0fabricHttpGatewayPort": {
|
||||
"value": 19080
|
||||
},
|
||||
"nt0reverseProxyEndpointPort": {
|
||||
"value": 19081
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user