Skip to content

Commit

Permalink
update the default cluster version
Browse files Browse the repository at this point in the history
  • Loading branch information
mumian committed Sep 22, 2017
1 parent faeeece commit 52ae83e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion 101-hdinsight-linux-with-sql-database/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
<img src="http://armviz.io/visualizebutton.png"/>
</a>

This template allows you to create a Linux-based HDInsight cluster, a SQL Database server, a SQL Database, and two tables. This template is used by the Use Sqoop with Hadoop in HDInsight article, https://azure.microsoft.com/documentation/articles/hdinsight-use-sqoop/.
This template allows you to create a HDInsight cluster, a SQL Database server, a SQL Database, and two tables. This template is used by the Use Sqoop with Hadoop in HDInsight article, https://azure.microsoft.com/documentation/articles/hdinsight-use-sqoop/.
14 changes: 7 additions & 7 deletions 101-hdinsight-linux-with-sql-database/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@

},
"properties": {
"clusterVersion": "3.5",
"clusterVersion": "3.6",
"osType": "Linux",
"clusterDefinition": {
"kind": "hadoop",
Expand Down Expand Up @@ -156,23 +156,23 @@
}
},
{
"name": "[variables('sqlDatabase').serverName]",
"type": "Microsoft.Sql/servers",
"name": "[variables('sqlDatabase').serverName]",
"dependsOn": [ ],
"location": "[resourceGroup().location]",
"tags": {
"displayName": "SqlServer"
},
"apiVersion": "2014-04-01",
"dependsOn": [ ],
"apiVersion": "2015-05-01-preview",
"properties": {
"administratorLogin": "[parameters('sqlAdminLogin')]",
"administratorLoginPassword": "[parameters('sqlAdminPassword')]",
"version": "12.0"
},
"resources": [
{
"name": "[variables('sqlDatabase').databaseName]",
"type": "databases",
"name": "[variables('sqlDatabase').databaseName]",
"location": "[resourceGroup().location]",
"tags": {
"displayName": "Database"
Expand Down Expand Up @@ -207,12 +207,12 @@
]
},
{
"name": "AllowAllAzureIps",
"type": "firewallrules",
"name": "AllowAllAzureIps",
"location": "[resourceGroup().location]",
"apiVersion": "2014-04-01",
"dependsOn": [
"[variables('sqlDatabase').serverName]"
"[concat('Microsoft.Sql/servers/', variables('sqlDatabase').serverName)]"
],
"properties": {
"startIpAddress": "0.0.0.0",
Expand Down
8 changes: 4 additions & 4 deletions 101-hdinsight-linux-with-sql-database/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"itemDisplayName": "Deploy a Linux-based HDInsight cluster and a SQL database",
"description": "This template allows you to create a Linux-based HDInsight cluster and a SQL Database for testing Sqoop.",
"summary": "Deploy a Linux-based HDInsight cluster and a SQL Database",
"itemDisplayName": "Deploy a HDInsight cluster and a SQL database",
"description": "This template allows you to create a HDInsight cluster and a SQL Database for testing Sqoop.",
"summary": "Deploy a HDInsight cluster and a SQL Database",
"githubUsername": "mumian",
"dateUpdated": "2017-03-08"
"dateUpdated": "2017-09-22"
}

0 comments on commit 52ae83e

Please sign in to comment.