From 6ad4b3d27d0de5d97c24eb5dcbbab72b4670a70d Mon Sep 17 00:00:00 2001 From: Brian Moore Date: Fri, 22 Sep 2017 09:03:04 -0500 Subject: [PATCH 1/4] updated param file --- mysql-ha-pxc-zones/azuredeploy.parameters.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql-ha-pxc-zones/azuredeploy.parameters.json b/mysql-ha-pxc-zones/azuredeploy.parameters.json index d62290c7a5b2..19096ca3baca 100644 --- a/mysql-ha-pxc-zones/azuredeploy.parameters.json +++ b/mysql-ha-pxc-zones/azuredeploy.parameters.json @@ -2,10 +2,10 @@ "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { - "userName": { + "adminUsername": { "value": "GEN-UNIQUE" }, - "password": { + "adminPassword": { "value": "GEN-PASSWORD" } } From 3fe7e296abbd275610a5583bc7b464ea44ca5e1e Mon Sep 17 00:00:00 2001 From: Brian Moore Date: Fri, 22 Sep 2017 09:33:17 -0500 Subject: [PATCH 2/4] added dependsOn for pip - mysql --- mysql-ha-pxc-zones/azuredeploy.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mysql-ha-pxc-zones/azuredeploy.json b/mysql-ha-pxc-zones/azuredeploy.json index af737e9a562a..12c1e3a486b6 100644 --- a/mysql-ha-pxc-zones/azuredeploy.json +++ b/mysql-ha-pxc-zones/azuredeploy.json @@ -201,7 +201,8 @@ "name": "[concat('nic-', copyIndex(1))]", "location": "[parameters('location')]", "dependsOn": [ - "[parameters('virtualNetworkName')]" + "[parameters('virtualNetworkName')]", + "pipLoop" ], "copy": { "name": "nicLoop", From 536332041dc0a5a83db1165465c41dc13cd44c41 Mon Sep 17 00:00:00 2001 From: Brian Moore Date: Fri, 22 Sep 2017 10:01:05 -0500 Subject: [PATCH 3/4] remove output due to reliability --- mysql-ha-pxc-zones/azuredeploy.json | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/mysql-ha-pxc-zones/azuredeploy.json b/mysql-ha-pxc-zones/azuredeploy.json index 12c1e3a486b6..dded1df34c6c 100644 --- a/mysql-ha-pxc-zones/azuredeploy.json +++ b/mysql-ha-pxc-zones/azuredeploy.json @@ -327,15 +327,5 @@ } ] } - ], - "outputs": { - "ipAddresses": { - "type": "array", - "value": [ - "[reference(concat(variables('publicIpAddressName'), 0)).ipAddress]", - "[reference(concat(variables('publicIpAddressName'), 1)).ipAddress]", - "[reference(concat(variables('publicIpAddressName'), 2)).ipAddress]" - ] - } - } + ] } \ No newline at end of file From b2f702b8d4f26d0509114f7d1686908270b2f1f8 Mon Sep 17 00:00:00 2001 From: Brian Moore Date: Fri, 22 Sep 2017 10:25:51 -0500 Subject: [PATCH 4/4] metadata update --- mysql-ha-pxc-zones/metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-ha-pxc-zones/metadata.json b/mysql-ha-pxc-zones/metadata.json index 728d64be9e74..acb3d611b22b 100644 --- a/mysql-ha-pxc-zones/metadata.json +++ b/mysql-ha-pxc-zones/metadata.json @@ -1,5 +1,5 @@ { - "itemDisplayName": "Deploys a 3 node Percona XtraDB Cluster in Availability Zones", + "itemDisplayName": "Deploy a 3 node Percona XtraDB Cluster in Availability Zones", "description": "This template deploys a 3 node MySQL high availability cluster on CentOS 6.5 or Ubuntu 12.04", "summary": "Deploys a 3 node MySQL PXC with stripped disks", "githubUsername": "aaronlower",