Skip to content

Commit

Permalink
Merge pull request Azure#1844 from YidingZhou/master
Browse files Browse the repository at this point in the history
scripts to create mdcs cluster
  • Loading branch information
Kay Singh committed May 5, 2016
2 parents c70fe05 + 12588da commit 93b25af
Show file tree
Hide file tree
Showing 11 changed files with 2,116 additions and 0 deletions.
418 changes: 418 additions & 0 deletions matlab-cluster/README.md

Large diffs are not rendered by default.

597 changes: 597 additions & 0 deletions matlab-cluster/azuredeploy.json

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions matlab-cluster/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"dnsLabelPrefix": {
"value": "GEN-UNIQUE"
},
"adminUserName": {
"value": "azureuser"
},
"vmSizeClient": {
"value": "Standard_D2"
},
"vmSizeMJS": {
"value": "Standard_D2"
},
"vmSizeWorker": {
"value": "Standard_D2"
},
"numWorkerVms": {
"value": 1
},
"numWorkerOnMJS": {
"value": 0
},
"numWorkersWorker": {
"value": -1
},
"imageUri": {
"value": "https://mdcsimageeastus2762.blob.core.windows.net/system/Microsoft.Compute/Images/mytemplate/t-osDisk.44acc251-d165-47f9-9d04-c3b37f537a9e.vhd"
},
"vhdContainer": {
"value": "https://mdcsimageeastus2762.blob.core.windows.net/mdcsclustervhdcontainers/"
},
"adminPassword": {
"value": "GEN-PASSWORD"
}
}
}
7 changes: 7 additions & 0 deletions matlab-cluster/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"itemDisplayName": "Create MATLAB Distributed Computing Server™ cluster",
"description": "Create MATLAB Distributed Computing Server™ cluster",
"summary": "Run your MATLAB compute-intensive parallel workloads by creating one or more MATLAB Distributed Computing Server™ clusters using Azure Virtual Machines.",
"githubUsername": "YidingZhou",
"dateUpdated": "2016-04-27"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"dnsLabelPrefix": {
"value": "[[dnsName]]"
},
"adminUserName": {
"value": "[[adminUserName]]"
},
"vmSizeClient": {
"value": "[[vmSizeClient]]"
},
"vmSizeMJS": {
"value": "[[vmSizeMJS]]"
},
"vmSizeWorker": {
"value": "[[vmSizeWorker]]"
},
"numWorkerVms": {
"value": [[scaleNumber]]
},
"numWorkerOnMJS": {
"value": [[nbOfWorkerOnMJS]]
},
"numWorkersWorker": {
"value": [[nbOfWorker]]
},
"imageUri": {
"value": "[[imageUri]]"
},
"vhdContainer": {
"value": "[[vhdContainer]]"
},
"adminPassword": {
"value": "[[adminPassword]]"
}
}
}
Loading

0 comments on commit 93b25af

Please sign in to comment.