├── .github └── ISSUE_TEMPLATE │ └── asdk-configurator-issue-report.md ├── .vscode └── settings.json ├── README.md ├── archive ├── 1811.2.zip ├── 1901.zip ├── README.md ├── devopstoolkit │ ├── DevOpsToolkit.ps1 │ └── readme.md └── media │ ├── DevOpsJenkins.PNG │ ├── DevOpsJenkinsFinished.PNG │ ├── DevOpsToolkitFlow.png │ ├── DevOpsToolkitPortal.PNG │ └── UnlockJenkins.PNG ├── changelog.md ├── deployment ├── .gitattributes ├── AzSPoC.ps1 ├── LICENSE ├── appservice │ ├── AppServiceDeploymentSettings.json │ ├── appservice1.4.exe │ ├── appservicehelper1.4.zip │ └── extension │ │ └── CSE.zip ├── counter │ ├── readme.md │ └── success.md ├── misc │ └── Ubuntu1804 │ │ ├── AddDBHosting1804.ps1 │ │ ├── AddDBSkuQuota1804.ps1 │ │ ├── AddImage1804.ps1 │ │ ├── Canonical.UbuntuServer1804LTS-ARM.1.0.0.azpkg │ │ ├── Canonical.UbuntuServer1804LTS-ARM.1.0.0 │ │ ├── DeploymentTemplates │ │ │ ├── DefaultTemplate.json │ │ │ └── createuidefinition.json │ │ ├── UIDefinition.json │ │ ├── icons │ │ │ ├── Hero.png │ │ │ ├── Large.png │ │ │ ├── Medium.png │ │ │ ├── Small.png │ │ │ └── Wide.png │ │ ├── manifest.json │ │ └── strings │ │ │ └── resources.resjson │ │ ├── ConfigASDKdependencies.ps1 │ │ ├── MSSQL │ │ ├── ASDK.MSSQL │ │ │ ├── DeploymentTemplates │ │ │ │ ├── azuredeploy.parameters.json │ │ │ │ ├── compute-password.json │ │ │ │ ├── compute-sshPublicKey.json │ │ │ │ ├── createUiDefinition.json │ │ │ │ ├── mainTemplate.json │ │ │ │ ├── networkSecurityGroup.json │ │ │ │ ├── publicip-existing.json │ │ │ │ ├── publicip-new.json │ │ │ │ ├── storage-existing.json │ │ │ │ ├── storage-new.json │ │ │ │ ├── vnet-existing.json │ │ │ │ └── vnet-new.json │ │ │ ├── Manifest.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── screenshots │ │ │ │ └── Screenshot1.png │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ └── readme.md │ │ ├── MySQL │ │ ├── ASDK.MySQL │ │ │ ├── DeploymentTemplates │ │ │ │ ├── azuredeploy.parameters.json │ │ │ │ ├── compute-password.json │ │ │ │ ├── compute-sshPublicKey.json │ │ │ │ ├── createUiDefinition.json │ │ │ │ ├── mainTemplate.json │ │ │ │ ├── networkSecurityGroup.json │ │ │ │ ├── publicip-existing.json │ │ │ │ ├── publicip-new.json │ │ │ │ ├── storage-existing.json │ │ │ │ ├── storage-new.json │ │ │ │ ├── vnet-existing.json │ │ │ │ └── vnet-new.json │ │ │ ├── Manifest.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── screenshots │ │ │ │ └── Screenshot1.png │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ └── readme.md │ │ ├── install_MSSQL.sh │ │ ├── install_MSSQL_Offline.sh │ │ ├── install_MySQL.sh │ │ └── install_MySQL_Offline.sh ├── multinode │ └── README.md ├── offline │ ├── AzSPoCdependencies.ps1 │ ├── README.md │ └── media │ │ ├── AsdkFolderCleanup.png │ │ ├── AzureStackFolder.png │ │ ├── Certs.png │ │ ├── VMextensions.png │ │ ├── WS2019Image.png │ │ └── WS2019gallery.png ├── packages │ ├── Aliases │ │ └── aliases.json │ ├── MSSQL │ │ ├── AzureStackPOC.MSSQL.1.0.0.azpkg │ │ ├── AzureStackPOC.MSSQL │ │ │ ├── DeploymentTemplates │ │ │ │ ├── azuredeploy.parameters.json │ │ │ │ ├── createUiDefinition.json │ │ │ │ └── mainTemplate.json │ │ │ ├── Manifest.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── screenshots │ │ │ │ └── Screenshot1.png │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ └── readme.md │ ├── MySQL │ │ ├── AzureStackPOC.MySQL.1.0.0.azpkg │ │ ├── AzureStackPOC.MySQL │ │ │ ├── DeploymentTemplates │ │ │ │ ├── azuredeploy.parameters.json │ │ │ │ ├── createUiDefinition.json │ │ │ │ └── mainTemplate.json │ │ │ ├── Manifest.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── screenshots │ │ │ │ └── Screenshot1.png │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ ├── AzureStackPOC.MySQL8.1.0.0.azpkg │ │ ├── AzureStackPOC.MySQL8 │ │ │ ├── DeploymentTemplates │ │ │ │ ├── azuredeploy.parameters.json │ │ │ │ ├── createUiDefinition.json │ │ │ │ └── mainTemplate.json │ │ │ ├── Manifest.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── screenshots │ │ │ │ └── Screenshot1.png │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ └── readme.md │ ├── Ubuntu │ │ ├── Canonical.UbuntuServer1604LTS-ARM.1.0.0.azpkg │ │ └── Canonical.UbuntuServer1604LTS-ARM.1.0.0 │ │ │ ├── DeploymentTemplates │ │ │ ├── DefaultTemplate.json │ │ │ └── createuidefinition.json │ │ │ ├── Manifest.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ ├── Hero.png │ │ │ ├── Large.png │ │ │ ├── Medium.png │ │ │ ├── Small.png │ │ │ └── Wide.png │ │ │ └── strings │ │ │ └── resources.resjson │ ├── WindowsServer │ │ ├── AddWS2019 │ │ │ ├── WS2019Images.ps1 │ │ │ ├── WS2019Updates.ps1 │ │ │ └── readme.md │ │ ├── Microsoft.WindowsServer2016Datacenter-ARM.1.0.0.azpkg │ │ ├── Microsoft.WindowsServer2016Datacenter-ARM.1.0.0 │ │ │ ├── DeploymentTemplates │ │ │ │ ├── DefaultTemplate.json │ │ │ │ └── createuidefinition.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Hero.png │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── manifest.json │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ ├── Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0.azpkg │ │ ├── Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0 │ │ │ ├── DeploymentTemplates │ │ │ │ ├── DefaultTemplate.json │ │ │ │ └── createuidefinition.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Hero.png │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── manifest.json │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ ├── Microsoft.WindowsServer2019Datacenter-ARM.1.0.0.azpkg │ │ ├── Microsoft.WindowsServer2019Datacenter-ARM.1.0.0 │ │ │ ├── DeploymentTemplates │ │ │ │ ├── DefaultTemplate.json │ │ │ │ └── createuidefinition.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ │ ├── Hero.png │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── manifest.json │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ ├── Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0.azpkg │ │ └── Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0 │ │ │ ├── DeploymentTemplates │ │ │ ├── DefaultTemplate.json │ │ │ └── createuidefinition.json │ │ │ ├── UIDefinition.json │ │ │ ├── icons │ │ │ ├── Hero.png │ │ │ ├── Large.png │ │ │ ├── Medium.png │ │ │ ├── Small.png │ │ │ └── Wide.png │ │ │ ├── manifest.json │ │ │ └── strings │ │ │ └── resources.resjson │ └── readme.md ├── powershell │ ├── AddAppServicePreReqs.ps1 │ ├── AddDBHosting.ps1 │ ├── AddDBRPImage.ps1 │ ├── AddDBSkuQuota.ps1 │ ├── AddGalleryItems.ps1 │ ├── AddImage.ps1 │ ├── AddVMExtensions.ps1 │ ├── DeployAppService.ps1 │ ├── DeployDBRP.ps1 │ ├── DeployVM.ps1 │ ├── DownloadAppService.ps1 │ ├── DownloadWinUpdates.ps1 │ ├── GetJobStatus.ps1 │ └── UploadScripts.ps1 ├── scripts │ ├── Convert-WindowsImage.ps1 │ ├── ResetStatus.ps1 │ ├── install_MSSQL.sh │ ├── install_MSSQL_Offline.sh │ ├── install_MySQL.sh │ ├── install_MySQL8.sh │ ├── install_MySQL8_Offline.sh │ ├── install_MySQL_Offline.sh │ ├── install_updates.sh │ └── readme.md └── templates │ ├── FileServer │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ ├── metadata.json │ └── scripts │ │ └── ConfigureFileServer.ps1 │ ├── MySQLHosting │ ├── Readme.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json │ └── SQLHosting │ ├── Readme.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json └── utilities ├── MarketplaceUpdater └── MarketplaceUpdater.ps1 ├── MemoryUsage └── MemoryUsage.ps1 ├── UbuntuTester ├── UbuntuReleaseTest.json ├── UbuntuTester.ps1 └── UbuntuTests.csv └── readme.md /.github/ISSUE_TEMPLATE/asdk-configurator-issue-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/.github/ISSUE_TEMPLATE/asdk-configurator-issue-report.md -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "powershell.codeFormatting.addWhitespaceAroundPipe": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/README.md -------------------------------------------------------------------------------- /archive/1811.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/1811.2.zip -------------------------------------------------------------------------------- /archive/1901.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/1901.zip -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/devopstoolkit/DevOpsToolkit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/devopstoolkit/DevOpsToolkit.ps1 -------------------------------------------------------------------------------- /archive/devopstoolkit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/devopstoolkit/readme.md -------------------------------------------------------------------------------- /archive/media/DevOpsJenkins.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/media/DevOpsJenkins.PNG -------------------------------------------------------------------------------- /archive/media/DevOpsJenkinsFinished.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/media/DevOpsJenkinsFinished.PNG -------------------------------------------------------------------------------- /archive/media/DevOpsToolkitFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/media/DevOpsToolkitFlow.png -------------------------------------------------------------------------------- /archive/media/DevOpsToolkitPortal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/media/DevOpsToolkitPortal.PNG -------------------------------------------------------------------------------- /archive/media/UnlockJenkins.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/archive/media/UnlockJenkins.PNG -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/changelog.md -------------------------------------------------------------------------------- /deployment/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/.gitattributes -------------------------------------------------------------------------------- /deployment/AzSPoC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/AzSPoC.ps1 -------------------------------------------------------------------------------- /deployment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/LICENSE -------------------------------------------------------------------------------- /deployment/appservice/AppServiceDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/appservice/AppServiceDeploymentSettings.json -------------------------------------------------------------------------------- /deployment/appservice/appservice1.4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/appservice/appservice1.4.exe -------------------------------------------------------------------------------- /deployment/appservice/appservicehelper1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/appservice/appservicehelper1.4.zip -------------------------------------------------------------------------------- /deployment/appservice/extension/CSE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/appservice/extension/CSE.zip -------------------------------------------------------------------------------- /deployment/counter/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/counter/success.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/AddDBHosting1804.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/AddDBHosting1804.ps1 -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/AddDBSkuQuota1804.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/AddDBSkuQuota1804.ps1 -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/AddImage1804.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/AddImage1804.ps1 -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/DeploymentTemplates/createuidefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/DeploymentTemplates/createuidefinition.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/UIDefinition.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Hero.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Large.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Medium.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Small.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/icons/Wide.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/manifest.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/Canonical.UbuntuServer1804LTS-ARM.1.0.0/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/ConfigASDKdependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/ConfigASDKdependencies.ps1 -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/compute-password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/compute-password.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/compute-sshPublicKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/compute-sshPublicKey.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/createUiDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/createUiDefinition.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/mainTemplate.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/networkSecurityGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/networkSecurityGroup.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/publicip-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/publicip-existing.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/publicip-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/publicip-new.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/storage-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/storage-existing.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/storage-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/storage-new.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/vnet-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/vnet-existing.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/vnet-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/DeploymentTemplates/vnet-new.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/Manifest.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/UIDefinition.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Large.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Medium.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Small.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/icons/Wide.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/ASDK.MSSQL/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MSSQL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MSSQL/readme.md -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/compute-password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/compute-password.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/compute-sshPublicKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/compute-sshPublicKey.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/createUiDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/createUiDefinition.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/mainTemplate.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/networkSecurityGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/networkSecurityGroup.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/publicip-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/publicip-existing.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/publicip-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/publicip-new.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/storage-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/storage-existing.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/storage-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/storage-new.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/vnet-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/vnet-existing.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/vnet-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/DeploymentTemplates/vnet-new.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/Manifest.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/UIDefinition.json -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Large.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Medium.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Small.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/icons/Wide.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/ASDK.MySQL/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/MySQL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/MySQL/readme.md -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/install_MSSQL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/install_MSSQL.sh -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/install_MSSQL_Offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/install_MSSQL_Offline.sh -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/install_MySQL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/install_MySQL.sh -------------------------------------------------------------------------------- /deployment/misc/Ubuntu1804/install_MySQL_Offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/misc/Ubuntu1804/install_MySQL_Offline.sh -------------------------------------------------------------------------------- /deployment/multinode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/multinode/README.md -------------------------------------------------------------------------------- /deployment/offline/AzSPoCdependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/AzSPoCdependencies.ps1 -------------------------------------------------------------------------------- /deployment/offline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/README.md -------------------------------------------------------------------------------- /deployment/offline/media/AsdkFolderCleanup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/media/AsdkFolderCleanup.png -------------------------------------------------------------------------------- /deployment/offline/media/AzureStackFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/media/AzureStackFolder.png -------------------------------------------------------------------------------- /deployment/offline/media/Certs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/media/Certs.png -------------------------------------------------------------------------------- /deployment/offline/media/VMextensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/media/VMextensions.png -------------------------------------------------------------------------------- /deployment/offline/media/WS2019Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/media/WS2019Image.png -------------------------------------------------------------------------------- /deployment/offline/media/WS2019gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/offline/media/WS2019gallery.png -------------------------------------------------------------------------------- /deployment/packages/Aliases/aliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Aliases/aliases.json -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/DeploymentTemplates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/DeploymentTemplates/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/DeploymentTemplates/createUiDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/DeploymentTemplates/createUiDefinition.json -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/DeploymentTemplates/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/DeploymentTemplates/mainTemplate.json -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/Manifest.json -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /deployment/packages/MSSQL/AzureStackPOC.MSSQL/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/AzureStackPOC.MSSQL/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/MSSQL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MSSQL/readme.md -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/DeploymentTemplates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/DeploymentTemplates/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/DeploymentTemplates/createUiDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/DeploymentTemplates/createUiDefinition.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/DeploymentTemplates/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/DeploymentTemplates/mainTemplate.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/Manifest.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/DeploymentTemplates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/DeploymentTemplates/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/DeploymentTemplates/createUiDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/DeploymentTemplates/createUiDefinition.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/DeploymentTemplates/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/DeploymentTemplates/mainTemplate.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/Manifest.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /deployment/packages/MySQL/AzureStackPOC.MySQL8/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/AzureStackPOC.MySQL8/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/MySQL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/MySQL/readme.md -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/DeploymentTemplates/createuidefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/DeploymentTemplates/createuidefinition.json -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/Manifest.json -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Hero.png -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/Ubuntu/Canonical.UbuntuServer1604LTS-ARM.1.0.0/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/AddWS2019/WS2019Images.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/AddWS2019/WS2019Images.ps1 -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/AddWS2019/WS2019Updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/AddWS2019/WS2019Updates.ps1 -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/AddWS2019/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/AddWS2019/readme.md -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/DeploymentTemplates/createuidefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/DeploymentTemplates/createuidefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Hero.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/manifest.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016Datacenter-ARM.1.0.0/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/createuidefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/createuidefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Hero.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/manifest.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2016DatacenterServerCore-ARM.1.0.0/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/DeploymentTemplates/createuidefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/DeploymentTemplates/createuidefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Hero.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/manifest.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019Datacenter-ARM.1.0.0/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0.azpkg -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/DefaultTemplate.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/createuidefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/DeploymentTemplates/createuidefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/UIDefinition.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Hero.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Large.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Medium.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Small.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/icons/Wide.png -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/manifest.json -------------------------------------------------------------------------------- /deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/WindowsServer/Microsoft.WindowsServer2019DatacenterServerCore-ARM.1.0.0/strings/resources.resjson -------------------------------------------------------------------------------- /deployment/packages/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/packages/readme.md -------------------------------------------------------------------------------- /deployment/powershell/AddAppServicePreReqs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/AddAppServicePreReqs.ps1 -------------------------------------------------------------------------------- /deployment/powershell/AddDBHosting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/AddDBHosting.ps1 -------------------------------------------------------------------------------- /deployment/powershell/AddDBRPImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/AddDBRPImage.ps1 -------------------------------------------------------------------------------- /deployment/powershell/AddDBSkuQuota.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/AddDBSkuQuota.ps1 -------------------------------------------------------------------------------- /deployment/powershell/AddGalleryItems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/AddGalleryItems.ps1 -------------------------------------------------------------------------------- /deployment/powershell/AddImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/AddImage.ps1 -------------------------------------------------------------------------------- /deployment/powershell/AddVMExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/AddVMExtensions.ps1 -------------------------------------------------------------------------------- /deployment/powershell/DeployAppService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/DeployAppService.ps1 -------------------------------------------------------------------------------- /deployment/powershell/DeployDBRP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/DeployDBRP.ps1 -------------------------------------------------------------------------------- /deployment/powershell/DeployVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/DeployVM.ps1 -------------------------------------------------------------------------------- /deployment/powershell/DownloadAppService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/DownloadAppService.ps1 -------------------------------------------------------------------------------- /deployment/powershell/DownloadWinUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/DownloadWinUpdates.ps1 -------------------------------------------------------------------------------- /deployment/powershell/GetJobStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/GetJobStatus.ps1 -------------------------------------------------------------------------------- /deployment/powershell/UploadScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/powershell/UploadScripts.ps1 -------------------------------------------------------------------------------- /deployment/scripts/Convert-WindowsImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/Convert-WindowsImage.ps1 -------------------------------------------------------------------------------- /deployment/scripts/ResetStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/ResetStatus.ps1 -------------------------------------------------------------------------------- /deployment/scripts/install_MSSQL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/install_MSSQL.sh -------------------------------------------------------------------------------- /deployment/scripts/install_MSSQL_Offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/install_MSSQL_Offline.sh -------------------------------------------------------------------------------- /deployment/scripts/install_MySQL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/install_MySQL.sh -------------------------------------------------------------------------------- /deployment/scripts/install_MySQL8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/install_MySQL8.sh -------------------------------------------------------------------------------- /deployment/scripts/install_MySQL8_Offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/install_MySQL8_Offline.sh -------------------------------------------------------------------------------- /deployment/scripts/install_MySQL_Offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/install_MySQL_Offline.sh -------------------------------------------------------------------------------- /deployment/scripts/install_updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/install_updates.sh -------------------------------------------------------------------------------- /deployment/scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/scripts/readme.md -------------------------------------------------------------------------------- /deployment/templates/FileServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/FileServer/README.md -------------------------------------------------------------------------------- /deployment/templates/FileServer/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/FileServer/azuredeploy.json -------------------------------------------------------------------------------- /deployment/templates/FileServer/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/FileServer/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/templates/FileServer/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/FileServer/metadata.json -------------------------------------------------------------------------------- /deployment/templates/FileServer/scripts/ConfigureFileServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/FileServer/scripts/ConfigureFileServer.ps1 -------------------------------------------------------------------------------- /deployment/templates/MySQLHosting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/MySQLHosting/Readme.md -------------------------------------------------------------------------------- /deployment/templates/MySQLHosting/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/MySQLHosting/azuredeploy.json -------------------------------------------------------------------------------- /deployment/templates/MySQLHosting/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/MySQLHosting/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/templates/MySQLHosting/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/MySQLHosting/metadata.json -------------------------------------------------------------------------------- /deployment/templates/SQLHosting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/SQLHosting/Readme.md -------------------------------------------------------------------------------- /deployment/templates/SQLHosting/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/SQLHosting/azuredeploy.json -------------------------------------------------------------------------------- /deployment/templates/SQLHosting/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/SQLHosting/azuredeploy.parameters.json -------------------------------------------------------------------------------- /deployment/templates/SQLHosting/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/deployment/templates/SQLHosting/metadata.json -------------------------------------------------------------------------------- /utilities/MarketplaceUpdater/MarketplaceUpdater.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/utilities/MarketplaceUpdater/MarketplaceUpdater.ps1 -------------------------------------------------------------------------------- /utilities/MemoryUsage/MemoryUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/utilities/MemoryUsage/MemoryUsage.ps1 -------------------------------------------------------------------------------- /utilities/UbuntuTester/UbuntuReleaseTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/utilities/UbuntuTester/UbuntuReleaseTest.json -------------------------------------------------------------------------------- /utilities/UbuntuTester/UbuntuTester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/utilities/UbuntuTester/UbuntuTester.ps1 -------------------------------------------------------------------------------- /utilities/UbuntuTester/UbuntuTests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/utilities/UbuntuTester/UbuntuTests.csv -------------------------------------------------------------------------------- /utilities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmcspirit/azurestack/HEAD/utilities/readme.md --------------------------------------------------------------------------------