Skip to content

Commit 891997c

Browse files
authored
Push changes from develop to master (#164)
* Fixed jetstress Storage Endpoint api usage (#152) * Metadata.json fix for all the existing ones and newly created for Linux templates (#154) * Docker swarm compute resource apiversion fix (#157) * SharePoint 2013 and VS2013 template readme updates (#160) Updated readme files for the SharePoint 2013 and Visual Studio 2013 templates * More fixes based on VS code tool (#163)
1 parent c9ff056 commit 891997c

File tree

13 files changed

+129
-95
lines changed

13 files changed

+129
-95
lines changed

docker-swarm-ubuntu/azuredeploy-sshkeys.parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentparameters.json#",
2+
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
33
"contentVersion": "1.0.0.0",
44
"parameters":
55
{

docker-swarm-ubuntu/azuredeploy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@
637637
"vmSize": "[variables('agentVMSize')]"
638638
},
639639
"osProfile": {
640-
"computername": "[concat(variables('agentVMNamePrefix'), copyIndex())]",
640+
"computerName": "[concat(variables('agentVMNamePrefix'), copyIndex())]",
641641
"adminUsername": "[variables('adminUsername')]",
642642
"adminPassword": "[variables('adminPassword')]",
643643
"linuxConfiguration": "[variables('linuxConfiguration')]"

docker-swarm-ubuntu/azuredeploy.parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentparameters.json#",
2+
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
33
"contentVersion": "1.0.0.0",
44
"parameters":
55
{

mesos-windows-jumpbox/azuredeploy-sshkeys.parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentparameters.json#",
2+
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
33
"contentVersion": "1.0.0.0",
44
"parameters": {
55
"sshRSAPublicKey": {

mesos-windows-jumpbox/azuredeploy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@
377377
"vmSize": "[variables('jumpboxVMSize')]"
378378
},
379379
"osProfile": {
380-
"computername": "[variables('jumpboxVMName')]",
380+
"computerName": "[variables('jumpboxVMName')]",
381381
"adminUsername": "[variables('windowsAdminUsername')]",
382382
"adminPassword": "[variables('windowsAdminPassword')]"
383383
},

mesos-windows-jumpbox/azuredeploy.parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentparameters.json#",
2+
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
33
"contentVersion": "1.0.0.0",
44
"parameters": {
55
"agentCount": {

rds-deployment-existing-ad/azuredeploy.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@
6666
"uniqueStorageAccountContainerName": "[concat('sc', resourceGroup().name)]",
6767
"imagePublisher": "MicrosoftWindowsServer",
6868
"imageOffer": "WindowsServer",
69-
"vnetAddressRange": "10.0.0.0/16",
70-
"subnetAddressRange": "10.0.0.0/24",
7169
"dnsServerPrivateIp": "10.0.0.4",
7270
"subnet-id": "[concat(resourceId('Microsoft.Network/virtualNetworks',parameters('adVnetName')),'/subnets/',parameters('adSubnetName'))]",
7371
"publicIpRef": "publicIp",
@@ -344,7 +342,7 @@
344342
"resources": [
345343
{
346344
"apiVersion": "2015-06-15",
347-
"type": "Microsoft.Compute/virtualMachines/extensions",
345+
"type": "extensions",
348346
"name": "gw-vm/gateway",
349347
"location": "[resourceGroup().location]",
350348
"dependsOn": [
@@ -429,7 +427,7 @@
429427
"resources": [
430428
{
431429
"apiVersion": "2015-06-15",
432-
"type": "Microsoft.Compute/virtualMachines/extensions",
430+
"type": "extensions",
433431
"name": "[concat('rdsh-', copyindex(),'/sessionhost')]",
434432
"location": "[resourceGroup().location]",
435433
"dependsOn": [

sharepoint-2013-non-ha/Readme.md

Lines changed: 44 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,57 @@ One external load balancer creates an RDP NAT rule to allow connectivity to the
1313
The second external load balancer creates an RDP NAT rule to allow connectivity to the SharePoint VM
1414
To access the SQL VM use the domain controller or the SharePoint VMs as jumpboxes
1515

16+
## Prerequisites
17+
+ This template requires a SharePoint 2013 with SP1 iso for installing the SharePoint server. If the provided iso does not include SP1 setup will fail.
18+
The iso for SharePoint 2013 with SP1 iso is available for download from the internet on MSDN subscriber downloads, Microsoft Partner Network, or Volume Licensing Service Center.
19+
If you don't wish to download the iso from the internet at template deployment time, you can download the iso beforehand place it on a local location where it
20+
is reachable for the VMs to download, for example Azure Stack blob storage. You can run the following script on your Azure Stack environment:
21+
22+
# Variables
23+
$rgname = "isosrg"
24+
$saname = "isossa"
25+
$containername = "isos"
26+
$location = "local"
27+
$isoPath = <ISO Path> # File path to the iso to upload, for example C:\isos\myiso.iso
28+
29+
# Add specific Azure Stack Environment
30+
$AadTenantId = <Tenant Id> #GUID Specific to the AAD Tenant
31+
32+
Add-AzureRmEnvironment -Name 'Azure Stack' `
33+
    -ActiveDirectoryEndpoint ("https://login.windows.net/$AadTenantId/") `
34+
    -ActiveDirectoryServiceEndpointResourceId "https://azurestack.local-api/" `
35+
    -ResourceManagerEndpoint ("https://api.azurestack.local/") `
36+
    -GalleryEndpoint ("https://gallery.azurestack.local/") `
37+
    -GraphEndpoint "https://graph.windows.net/"
38+
39+
# Get Azure Stack Environment Information
40+
$env = Get-AzureRmEnvironment 'Azure Stack'
41+
42+
# Authenticate to AAD with Azure Stack Environment
43+
Add-AzureRmAccount -Environment $env -Verbose
44+
45+
# Create a resource group, storage account, and storage container
46+
New-AzureRmResourceGroup -Name $rgname -Location $location
47+
New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $saname -Type Standard_LRS -Location $location
48+
Set-AzureRmCurrentStorageAccount -ResourceGroupName $rgname -StorageAccountName $saname
49+
$container = New-AzureStorageContainer -Name $containername -Permission Container
50+
# Upload the blob
51+
$file = Get-ChildItem -Path $isoPath
52+
Set-AzureStorageBlobContent -Container $containername -File $file.FullName -Blob $file.Name
53+
$isodownloaduri = (Get-AzureStorageBlob -Blob $file.Name -Container $containername).ICloudBlob.uri.AbsoluteUri
54+
# This is the value you will use for the sharepoint2013SP1DownloadLink parameter on the SharePoint 2013 template
55+
$isodownloaduri
56+
57+
+ This template requires a product key for SharePoint 2013. A trial key for SharePoint 2013 can be found on MSDN subscriber downloads or from the TechNet
58+
evaluation center.
59+
1660
## Parameters
1761
+ domainName: FQDN of the new domain to be created.
1862
+ sqlServerServiceAccountUserName: Username of the SQL server service account to create.
1963
+ adminUsername: Username of the local Administrator account of the new VMs and domain.
2064
+ adminPassword: Password of the local Administrator account of the new VMs and domain.
2165
+ sharepoint2013SP1DownloadLink: Direct download link for the SharePoint 2013 with SP1 ISO.
2266
+ sharepoint2013ProductKey: Product key for SharePoint 2013 with SP1, required for SharePoint setup.
23-
24-
## Notes
25-
+ This template requires a SharePoint 2013 with SP1 iso for installing the SharePoint server. If the provided iso does not include SP1 setup will fail.
26-
A direct link for SharePoint 2013 with SP1 iso can be obtained from MSDN subscriber downloads. Note however that MSDN subscribe downloads links expire
27-
after a period of time. If you have an iso available, place it on a location where it is reachable for the VMs to download (Azure blob storage for example)
28-
+ This template requires a product key for SharePoint 2013. A trial key for SharePoint 2013 can be found on MSDN subscriber downloads or from the TechNet
29-
evaluation center.
3067

3168
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2FAzureStack-QuickStart-Templates%2Fdevelop%2Fsharepoint-2013-non-ha%2Fazuredeploy.json" target="_blank">
3269
<img src="http://azuredeploy.net/deploybutton.png"/>

sharepoint-2013-non-ha/spVMTemplate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
},
184184
"name": "[concat(parameters('vmName'), '0','data-1.vhd')]",
185185
"caching": "None",
186-
"createOption": "empty",
186+
"createOption": "Empty",
187187
"diskSizeGB": "[parameters('dataDiskSize')]",
188188
"lun": 0
189189
},
@@ -193,7 +193,7 @@
193193
},
194194
"name": "[concat(parameters('vmName'), '0','log-1.vhd')]",
195195
"caching": "None",
196-
"createOption": "empty",
196+
"createOption": "Empty",
197197
"diskSizeGB": "[parameters('dataDiskSize')]",
198198
"lun": 1
199199
}
6 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)