Skip to content

Commit

Permalink
Documentation update for Stateless NodeTypes in Service Fabric (#37)
Browse files Browse the repository at this point in the history
* Stateless Node Type Template

* Added nsg rules

* Fix
  • Loading branch information
Saket Harsh authored Oct 5, 2020
1 parent 2ffac5a commit a9060ff
Show file tree
Hide file tree
Showing 5 changed files with 1,511 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json",
"contentVersion": "1.0.0.0",
"parameters": {
"clusterLocation": {
"value": "GEN-UNIQUE"
},
"clusterName": {
"value": "GEN-UNIQUE"
},
"adminUserName": {
"value": "GEN-UNIQUE"
},
"adminPassword": {
"value": "GEN-UNIQUE"
},
"vmImagePublisher": {
"value": "MicrosoftWindowsServer"
},
"vmImageOffer": {
"value": "WindowsServer"
},
"vmImageSku": {
"value": "2016-Datacenter-with-Containers"
},
"vmImageVersion": {
"value": "latest"
},
"loadBalancedAppPort1": {
"value": 80
},
"loadBalancedAppPort2": {
"value": 443
},
"clusterProtectionLevel": {
"value": "EncryptAndSign"
},
"certificateStoreValue": {
"value": "My"
},
"certificateThumbprint": {
"value": "GEN-SF-CERT-THUMBPRINT"
},
"sourceVaultValue": {
"value": "GEN-KEYVAULT-RESOURCE-ID"
},
"certificateUrlValue": {
"value": "GEN-SF-CERT-URL"
},
"storageAccountType": {
"value": "Standard_LRS"
},
"supportLogStorageAccountType": {
"value": "Standard_LRS"
},
"applicationDiagnosticsStorageAccountType": {
"value": "Standard_LRS"
},
"nt0InstanceCount": {
"value": 5
},
"nt1InstanceCount" : {
"value": 5
},
"vmNodeType0Size": {
"value": "Standard_D2_V2"
}
}
}
Loading

0 comments on commit a9060ff

Please sign in to comment.