diff --git a/AzureResourceManager/README.md b/AzureResourceManager/README.md
new file mode 100644
index 0000000..9cd61b0
--- /dev/null
+++ b/AzureResourceManager/README.md
@@ -0,0 +1,80 @@
+# Setup Artifactory Enterprise
+
+
+
+
+
+
+
+
+This template can help you setup the Artifactory Enterprise environment to deploy [Artifactory](https://jfrog.com/artifactory) on Azure.
+
+## A. Deploy Artifactory Enterprise on Azure
+
+
+
+1. Click "Deploy to Azure" button. If you haven't got an Azure subscription, it will guide you on how to signup for a free trial.
+
+2. Enter a valid values to parameters. Atleast 1 license has to be provided.
+
+
+
+
+3. Click on Purchase to start deploying resources. It will deploy MsSQL database, Azure Blob storage container, VM installing Nginx and Artifactory and Load balancer.
+
+4. Once deployment it done. Copy FQDN from Output of deployment template.
+
+5. Access artifactory using FQDN.
+
+6. You will see specified artifactory member nodes in 'Admin -> High Availability' page.
+
+### Note:
+1. This template only supports Artifactory version 5.8.x and above.
+2. Turn off daily backups. Read Documentation provided [here](https://www.jfrog.com/confluence/display/RTF/Managing+Backups)
+3. Use SSL Certificate with valid wild card to you artifactory as docker registry with subdomain method.
+4. Input values for 'adminUsername' and 'adminPassword' parameters needs to follow azure VM access rules.
+5. One primary node is configured automatically. And, Minimum 1 member node is expected for the Artifactory HA installation.
+6. This template provides support for max 5 licenses. To add more licenses, Edit the template (input fields, CustomScript sections) and install_artifactory.sh script.
+
+### Steps to setup Artifactory as secure docker registry
+considering you have SSL certificate for `*.jfrog.team`
+1. Pass your SSL Certificate in parameter `Certificate` as string
+2. Pass your SSL Certificate Key in parameter `CertificateKey` as string
+3. Set `CertificateDomain` as `jfrog.team`
+4. Set `ArtifactoryServerName` as `artifactory` if you want to access artifactory with `https://artifactory.jfrog.team`
+5. Create DNS record with entry `artifactory.jfrog.team` pointing to load balancer value provided as output in template deployment.
+6. Create DNS record with entry `*.jfrog.team` pointing to load balancer value provided as output in template deployment.
+7. If you have virtual docker registry with name `docker-virtual` in artifactory. You can access it via `docker-virtual.jfrog.team`
+ e.g ```docker pull docker-virtual.jfrog.team/nginx```
+
+### Steps to upgrade Artifactory Version
+
+1. Login into Primary VM instance and sudo as root. Use the admin credentials provided in the install setup.
+Note: Use load balancer's NAT entries under Azure resources, to get the allocated NAT port for accessing the VM instance.
+
+2. Stop nginx and artifactory services.
+ ```
+ service nginx stop
+ service artifactory stop
+ ```
+
+3. Upgrade artifactory with following apt-get install command.
+ ```
+ apt-get update
+ apt-get -y install jfrog-artifactory-pro=${ARTIFACTORY_VERSION}
+ ```
+4. Start artifactory and nginx services.
+ ```
+ service artifactory start
+ service nginx start
+ ```
+5. Repeat above steps for all member nodes.
+
+------
+#### Note:
+Supported locations: `East US 2`, `Central US`, `West Central US` and `West Europe`.
+Please check the Azure region support for `Standard Sku` property in load balancer for this template to work properly.
+Check for SQL server support on specified location. If SQL server is not available in the location, Use 'DB_Location' to specify the location with SQL server support.
+
+
+
diff --git a/AzureResourceManager/azuredeploy.json b/AzureResourceManager/azuredeploy.json
new file mode 100644
index 0000000..64d6bb5
--- /dev/null
+++ b/AzureResourceManager/azuredeploy.json
@@ -0,0 +1,864 @@
+{
+ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "vmSku": {
+ "type": "string",
+ "defaultValue": "Standard_A4",
+ "metadata": {
+ "description": "Size of VMs in the VM Scale Set."
+ }
+ },
+ "clusterName": {
+ "type": "string",
+ "metadata": {
+ "description": "String used as a base for naming resources. Must be 3-61 characters in length and globally unique across Azure. A hash is prepended to this string for some resources, and resource-specific information is appended."
+ },
+ "maxLength": 61
+ },
+ "nodeCount": {
+ "type": "int",
+ "defaultValue": 2,
+ "minValue": 1,
+ "metadata": {
+ "description": "Number of VM instances (100 or less) for member artifactory nodes. Minimum 1 node."
+ },
+ "maxValue": 100
+ },
+ "artifactoryVersion": {
+ "type": "string",
+ "defaultValue": "5.8.1",
+ "metadata": {
+ "description": "Artifactory version to deploy. Supported from 5.8.0 and above."
+ }
+ },
+ "masterKey": {
+ "type": "string",
+ "defaultValue": "1ce2be4490ca2c662cb79636cf9b7b8e",
+ "metadata": {
+ "description": "Master key for Artifactory cluster. Generate master.key using command '$openssl rand -hex 16'"
+ },
+ "maxLength": 64
+ },
+ "adminUsername": {
+ "type": "string",
+ "metadata": {
+ "description": "Admin username on all VMs. Follow conventions for azure VM admin user name."
+ }
+ },
+ "adminPassword": {
+ "type": "securestring",
+ "metadata": {
+ "description": "Admin password on all VMs. Follow conventions for azure VM admin password rules."
+ }
+ },
+ "ubuntuOSVersion": {
+ "type": "string",
+ "defaultValue": "14.04.2-LTS",
+ "allowedValues": [
+ "12.04.5-LTS",
+ "14.04.2-LTS",
+ "15.10"
+ ],
+ "metadata": {
+ "description": "The Ubuntu version for the VM. This will pick a fully patched image of this given Ubuntu version. Allowed values: 12.04.5-LTS, 14.04.2-LTS, 15.10."
+ }
+ },
+ "artifactoryLicense1": {
+ "type": "string",
+ "metadata": {
+ "description": "Artifactory Enterprise License. Providing one license is mandatory"
+ }
+ },
+ "artifactoryLicense2": {
+ "type": "string",
+ "defaultValue": "",
+ "metadata": {
+ "description": "Artifactory Enterprise License"
+ }
+ },
+ "artifactoryLicense3": {
+ "type": "string",
+ "defaultValue": "",
+ "metadata": {
+ "description": "Artifactory Enterprise License"
+ }
+ },
+ "artifactoryLicense4": {
+ "type": "string",
+ "defaultValue": "",
+ "metadata": {
+ "description": "Artifactory Enterprise License"
+ }
+ },
+ "artifactoryLicense5": {
+ "type": "string",
+ "defaultValue": "",
+ "metadata": {
+ "description": "Artifactory Enterprise License"
+ }
+ },
+ "certificate": {
+ "type": "string",
+ "defaultValue": "-----BEGIN CERTIFICATE----- MIIFhzCCA2+gAwIBAgIJALC4r5BQWZE4MA0GCSqGSIb3DQEBCwUAMFoxCzAJBgNV BAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRMwEQYDVQQHDApTYW50YUNsYXJh MQswCQYDVQQKDAJJVDEUMBIGA1UEAwwLKi5sb2NhbGhvc3QwHhcNMTgwMTE3MTk0 NjI4WhcNMTkwMTA4MTk0NjI4WjBaMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2Fs aWZvcm5pYTETMBEGA1UEBwwKU2FudGFDbGFyYTELMAkGA1UECgwCSVQxFDASBgNV BAMMCyoubG9jYWxob3N0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA 7KfOWDQlov8cMa8r/lcJqiWZaH9myQC74Vbe0HXsntQbcvljkjG2P7ebm5dd9Bzc sauNOJpbKf5AhFK1iwJUAkciGc1LR4k8wfWmQM3NPS8hrqrtH20zqNpdFRpNYjja JofwccPNm030GhhZkZ95TpruvmswMDwspl3jfqdcc/eiQsHcKyGnV2a+UAeoqe7J mHhmhRy1MLqAjF5U1GrUYUONA+22iRDJb4c9B91QoWvsnXpdA9NKV/mmA3/rIdx6 Ld2IPRdrIw2K5sAnXsh3bx2oCSvSfussf0x+4XDrnsaHVfjwvfNL8ECOuac2Oi/E WOp9528gOohpFAuwEt63Vl5p8/CC9m0HJDTZBKm2l5eD1kdPIj4PvP9Sn9CxGXKQ E1bxWoFxGX8EyRW0b0NK31N7b8JPZ1SoFNiB5amOMNLvR26a7cQrKumTuJeYK9Ja JaxhMXM7R0DA0Ev8ZG2xmyCygox+1KPSmJOIEpT70BFbj3rKLNqP22ET+zvPuh+2 DdgyrpHFeYkGWjMbWPjK7wJsD2zM8ccoJQfepPz8I4rT0JfrKAQgCGuGOggneaNJ KTVGNOFbj5AXdZ/Q+GvNommyRdq4J7EnqY6L+P25fo5qZ6UZ/iS0tPcvxgn0Fdhs pUPbQyQIDZyxZd3Q1lUIE38ol8P66mS2zbzf8EeOCoUCAwEAAaNQME4wHQYDVR0O BBYEFETAQM/5P7XJ8kevHFj6BPndQOFaMB8GA1UdIwQYMBaAFETAQM/5P7XJ8kev HFj6BPndQOFaMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggIBAJ1TepKv LWYhFmVQcgZwZf/qt1a1cohzJSm6da9RCnnAWC7WC/U117bgSomtrH1v0OysHFhB zBBUeBqI7+OmzAX8dhj+roKkcnFUM/IwlK1eueIIA//CWvEf/o0XExilVS2yCc9d PTpOQBXwk9QinxK36kHdBiGxa7dW0JPnOEEmuMgGORKeLy4J6Ik8iSeFY1SZVcOI +6WWvoKciPlmIeccC+6YVmkeBwhP2o5r5w/UAaO2hSnGvmm4UIj/VJv4VQu7xTUp cIfFz5NtIr80DbqcyPiEMS2ETJ4L/kO4MS5FfeEXyQuXCzmiIDVY6tE3C7+kZmK4 JzPLuWm9ndQoyQySOGfQqvlUR1+YxUdvmu3LrOS5dOA354Q36wHa4wEGUoHU/7GV fYQmmmDSDaNSpXW5PFey6scFyDBS/yYJ0H9EjYb/11HeWYj8Yv5xTWj8nhzJONC8 D6Y5ydlU4PifM2pOf88pTYpmogNwLJWXbql5I9cvMa8APo4yLVqcISU5ynsvFke+ Non+T0mHpJai/hrA9NK+s6EGC1dAX58jy61h6FhOPI1d4s/mov/KMa2t3SfZp5SF 81aR6dHvO56teiK5M1xMkrqG75zh3TMFJJLRFe9XxeB4JeN76URB3mgADOUqkBxd ibSgVqfKwOw4IujEcqMUc5mqSnbLY1Dv+oby -----END CERTIFICATE-----",
+ "metadata": {
+ "description": "To use Artifactory as docker registry you need to provide wild card valid Certificate. Provide your SSL Certificate."
+ }
+ },
+ "certificateKey": {
+ "type": "string",
+ "defaultValue": "-----BEGIN PRIVATE KEY----- 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 S+j1+iUKGGhwVmhqh75q5do3+VF3XlAh -----END PRIVATE KEY-----",
+ "metadata": {
+ "description": "Provide your SSL Certificate key"
+ }
+ },
+ "certificateDomain": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "artifactory",
+ "metadata": {
+ "description": "Provide your Certificate Domain Name. For e.g jfrog.team for certificate with *.jfrog.team"
+ }
+ },
+ "artifactoryServerName": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "artifactory",
+ "metadata": {
+ "description": "Provide artifactory server name to be used in Nginx. e.g artifactory for artifactory.jfrog.team"
+ }
+ },
+ "extraJavaOptions": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "-server -Xms2g -Xmx14g -Xss256k -XX:+UseG1GC -XX:OnOutOfMemoryError=\\\"kill -9 %p\\\"",
+ "metadata": {
+ "description": "Setting Java Memory Parameters for Artifactory. Learn about system requirements for Artifactory https://www.jfrog.com/confluence/display/RTF/System+Requirements#SystemRequirements-RecommendedHardware."
+ }
+ },
+ "DB_Admin_User": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "artifactory",
+ "metadata": {
+ "description": "Database Admin user name"
+ }
+ },
+ "DB_Admin_Password": {
+ "type": "securestring",
+ "minLength": 1,
+ "defaultValue": "jFrog123",
+ "metadata": {
+ "description": "Database Admin password"
+ }
+ },
+ "DB_Name": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "artdb",
+ "metadata": {
+ "description": "Database name"
+ }
+ },
+ "DB_Edition": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "Basic",
+ "allowedValues": [
+ "Basic",
+ "Standard",
+ "Premium"
+ ],
+ "metadata": {
+ "description": "Database Edition"
+ }
+ },
+ "DB_Location": {
+ "type": "string",
+ "defaultValue": "",
+ "metadata": {
+ "description": "Database location. Default to resource group location if blank."
+ }
+ },
+ "_artifactsLocation": {
+ "type": "string",
+ "metadata": {
+ "description": "The base URI where artifacts required by this template are located. When the template is deployed using the accompanying scripts, a private location in the subscription will be used and this value will be automatically generated."
+ },
+ "defaultValue": "https://raw.githubusercontent.com/JFrogDev/JFrog-Cloud-Installers/master/AzureResourceManager/"
+ },
+ "_artifactsLocationSasToken": {
+ "type": "securestring",
+ "metadata": {
+ "description": "The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated."
+ },
+ "defaultValue": ""
+ }
+ },
+ "variables": {
+ "namingInfix": "[toLower(substring(concat(parameters('clusterName'), uniqueString(resourceGroup().id)), 0, 9))]",
+ "addressPrefix": "10.0.0.0/16",
+ "subnetPrefix": "10.0.1.0/24",
+ "virtualNetworkName": "[concat(variables('namingInfix'), 'vnet')]",
+ "subnetName": "[concat(variables('namingInfix'), 'subnet')]",
+ "scaleSetName": "[concat(variables('namingInfix'), 'scaleset')]",
+ "lbName": "[concat(variables('namingInfix'), 'lb')]",
+ "bepoolName": "[concat(variables('lbName'), 'bepool')]",
+ "fepoolName": "[concat(variables('lbName'), 'fepool')]",
+ "lbID": "[resourceId('Microsoft.Network/loadBalancers',variables('lbName'))]",
+ "bepoolID": "[concat(variables('lbID'),'/backendAddressPools/', variables('bepoolName'))]",
+ "feIpConfigName": "[concat(variables('fepoolName'), 'IpConfig')]",
+ "feIpConfigId": "[concat(variables('lbID'),'/frontendIPConfigurations/', variables('feIpConfigName'))]",
+ "pipName": "[concat(variables('namingInfix'), 'pip')]",
+ "nicName": "[concat(variables('namingInfix'), 'nic')]",
+ "natPoolName": "[concat(variables('lbName'), 'natpool')]",
+ "ipConfigName": "[concat(variables('namingInfix'), 'ipconfig')]",
+ "httpProbeName": "httpProbe",
+ "httpsProbeName": "httpsProbe",
+ "storageAccountName": "[concat(variables('namingInfix'), 'storage')]",
+ "storageAccountType": "Standard_LRS",
+ "vmStorageAccountContainerName": "filestore",
+ "azureSqlServerName": "[concat(variables('namingInfix'), 'sqlsrv')]",
+ "DB_Name": "[parameters('DB_Name')]",
+ "DB_Admin_User": "[parameters('DB_Admin_User')]",
+ "DB_Admin_Password": "[parameters('DB_Admin_Password')]",
+ "DB_Edition": "[parameters('DB_Edition')]",
+ "DB_Location": "[parameters('DB_Location')]",
+ "artifactoryVersion": "[parameters('artifactoryVersion')]",
+ "masterKey": "[parameters('masterKey')]",
+ "certificate": "[parameters('certificate')]",
+ "certificateKey": "[parameters('certificateKey')]",
+ "certificateDomain": "[parameters('certificateDomain')]",
+ "artifactoryServerName": "[parameters('artifactoryServerName')]",
+ "extraJavaOptions": "[parameters('extraJavaOptions')]",
+ "artifactoryLicense1": "[parameters('artifactoryLicense1')]",
+ "artifactoryLicense2": "[parameters('artifactoryLicense2')]",
+ "artifactoryLicense3": "[parameters('artifactoryLicense3')]",
+ "artifactoryLicense4": "[parameters('artifactoryLicense4')]",
+ "artifactoryLicense5": "[parameters('artifactoryLicense5')]",
+ "osType": {
+ "publisher": "Canonical",
+ "offer": "UbuntuServer",
+ "sku": "14.04.2-LTS",
+ "version": "latest"
+ },
+ "apiVersion": "2015-06-15",
+ "imageReference": "[variables('osType')]",
+ "dbTemplate": "azureDBDeploy.json",
+ "dbTemplateLocation": "[concat(parameters('_artifactsLocation'), 'nested', '/', variables('dbTemplate'))]",
+ "nsgName": "[concat(variables('namingInfix'), 'nsg')]"
+ },
+ "resources": [
+ {
+ "type": "Microsoft.Network/networkSecurityGroups",
+ "location": "[resourceGroup().location]",
+ "properties": {
+ "securityRules": [
+ {
+ "name": "ssh-rule",
+ "properties": {
+ "description": "Allow SSH",
+ "protocol": "Tcp",
+ "sourcePortRange": "*",
+ "destinationPortRange": "22",
+ "sourceAddressPrefix": "Internet",
+ "destinationAddressPrefix": "*",
+ "access": "Allow",
+ "priority": 100,
+ "direction": "Inbound"
+ }
+ },
+ {
+ "name": "http-rule",
+ "properties": {
+ "description": "Allow HTTP",
+ "protocol": "Tcp",
+ "sourcePortRange": "*",
+ "destinationPortRange": "8081",
+ "sourceAddressPrefix": "Internet",
+ "destinationAddressPrefix": "*",
+ "access": "Allow",
+ "priority": 101,
+ "direction": "Inbound"
+ }
+ },
+ {
+ "name": "http-rule-1",
+ "properties": {
+ "description": "Allow HTTP",
+ "protocol": "Tcp",
+ "sourcePortRange": "*",
+ "destinationPortRange": "80",
+ "sourceAddressPrefix": "Internet",
+ "destinationAddressPrefix": "*",
+ "access": "Allow",
+ "priority": 102,
+ "direction": "Inbound"
+ }
+ },
+ {
+ "name": "https-rule",
+ "properties": {
+ "description": "Allow HTTP",
+ "protocol": "Tcp",
+ "sourcePortRange": "*",
+ "destinationPortRange": "443",
+ "sourceAddressPrefix": "Internet",
+ "destinationAddressPrefix": "*",
+ "access": "Allow",
+ "priority": 103,
+ "direction": "Inbound"
+ }
+ },
+ {
+ "name": "membership-rule",
+ "properties": {
+ "description": "Allow HTTP",
+ "protocol": "Tcp",
+ "sourcePortRange": "*",
+ "destinationPortRange": "10001",
+ "sourceAddressPrefix": "Internet",
+ "destinationAddressPrefix": "*",
+ "access": "Allow",
+ "priority": 105,
+ "direction": "Inbound"
+ }
+ }
+ ]
+ },
+ "name": "[variables('nsgName')]",
+ "apiVersion": "2016-03-30"
+ },
+ {
+ "type": "Microsoft.Network/virtualNetworks",
+ "name": "[variables('virtualNetworkName')]",
+ "location": "[resourceGroup().location]",
+ "apiVersion": "2016-03-30",
+ "dependsOn": [
+ "[concat('Microsoft.Network/networkSecurityGroups/', variables('nsgName'))]"
+ ],
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "[variables('addressPrefix')]"
+ ]
+ },
+ "subnets": [
+ {
+ "name": "[variables('subnetName')]",
+ "properties": {
+ "addressPrefix": "[variables('subnetPrefix')]",
+ "networkSecurityGroup": {
+ "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "apiVersion": "[variables('apiVersion')]",
+ "type": "Microsoft.Network/networkInterfaces",
+ "name": "[variables('nicName')]",
+ "location": "[resourceGroup().location]",
+ "dependsOn": [
+ "[concat('Microsoft.Network/publicIPAddresses/', variables('pipName'))]",
+ "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]",
+ "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]"
+ ],
+ "properties": {
+ "ipConfigurations": [
+ {
+ "name": "ipconfig1",
+ "properties": {
+ "privateIPAllocationMethod": "Dynamic",
+ "subnet": {
+ "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName')), '/subnets/', variables('subnetName'))]"
+ }
+ }
+ }
+ ],
+ "networkSecurityGroup": {
+ "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]"
+ }
+ }
+ },
+ {
+ "apiVersion": "[variables('apiVersion')]",
+ "type": "Microsoft.Network/networkInterfaces",
+ "name": "[concat(variables('nicName'),'2')]",
+ "location": "[resourceGroup().location]",
+ "dependsOn": [
+ "[concat('Microsoft.Network/publicIPAddresses/', variables('pipName'),'2')]",
+ "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]",
+ "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]"
+ ],
+ "properties": {
+ "ipConfigurations": [
+ {
+ "name": "ipconfig1",
+ "properties": {
+ "privateIPAllocationMethod": "Dynamic",
+ "subnet": {
+ "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName')), '/subnets/', variables('subnetName'))]"
+ }
+ }
+ }
+ ],
+ "networkSecurityGroup": {
+ "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]"
+ }
+ }
+ },
+ {
+ "type": "Microsoft.Network/publicIPAddresses",
+ "name": "[variables('pipName')]",
+ "location": "[resourceGroup().location]",
+ "sku": {
+ "name": "Standard"
+ },
+ "apiVersion": "2017-08-01",
+ "properties": {
+ "publicIPAllocationMethod": "Static",
+ "dnsSettings": {
+ "domainNameLabel": "[variables('namingInfix')]"
+ }
+ }
+ },
+ {
+ "type": "Microsoft.Network/publicIPAddresses",
+ "name": "[concat(variables('pipName'),'2')]",
+ "location": "[resourceGroup().location]",
+ "sku": {
+ "name": "Standard"
+ },
+ "apiVersion": "2017-08-01",
+ "properties": {
+ "publicIPAllocationMethod": "Static",
+ "dnsSettings": {
+ "domainNameLabel": "[concat(variables('namingInfix'),'2')]"
+ }
+ }
+ },
+ {
+ "type": "Microsoft.Network/loadBalancers",
+ "name": "[variables('lbName')]",
+ "location": "[resourceGroup().location]",
+ "apiVersion": "2017-08-01",
+ "sku": {
+ "name": "Standard"
+ },
+ "dependsOn": [
+ "[concat('Microsoft.Network/publicIPAddresses/', variables('pipName'))]",
+ "[concat('Microsoft.Network/publicIPAddresses/', variables('pipName'), '2')]"
+ ],
+ "tags": {
+ "displayName": "Load Balancer"
+ },
+ "properties": {
+ "frontendIPConfigurations": [
+ {
+ "name": "[variables('feIpConfigName')]",
+ "properties": {
+ "publicIPAddress": {
+ "id": "[resourceId('Microsoft.Network/publicIPAddresses', variables('pipName'))]"
+ }
+ }
+ },
+ {
+ "name": "[concat(variables('feIpConfigName'),'2')]",
+ "properties": {
+ "publicIPAddress": {
+ "id": "[resourceId('Microsoft.Network/publicIPAddresses', concat(variables('pipName'),'2'))]"
+ }
+ }
+ }
+ ],
+ "backendAddressPools": [
+ {
+ "name": "[variables('bepoolName')]"
+ },
+ {
+ "name": "[concat(variables('bepoolName'),'2')]"
+ }
+ ],
+ "inboundNatPools": [
+ {
+ "name": "[variables('natPoolName')]",
+ "properties": {
+ "frontendIPConfiguration": {
+ "id": "[variables('feIpConfigId')]"
+ },
+ "protocol": "tcp",
+ "frontendPortRangeStart": 10022,
+ "frontendPortRangeEnd": 11022,
+ "backendPort": 22
+ }
+ },
+ {
+ "name": "[concat(variables('natPoolName'),'2')]",
+ "properties": {
+ "frontendIPConfiguration": {
+ "id": "[concat(variables('feIpConfigId'),'2')]"
+ },
+ "protocol": "tcp",
+ "frontendPortRangeStart": 20022,
+ "frontendPortRangeEnd": 21022,
+ "backendPort": 22
+ }
+ }
+ ],
+ "loadBalancingRules": [
+ {
+ "name": "HTTPRule",
+ "properties": {
+ "loadDistribution": "Default",
+ "frontendIPConfiguration": {
+ "id": "[variables('feIpConfigId')]"
+ },
+ "backendAddressPool": {
+ "id": "[variables('bepoolID')]"
+ },
+ "protocol": "Tcp",
+ "frontendPort": 80,
+ "backendPort": 80,
+ "enableFloatingIP": false,
+ "idleTimeoutInMinutes": 5,
+ "probe": {
+ "id": "[concat(variables('lbId'), '/probes/', variables('httpProbeName'))]"
+ }
+ }
+ },
+ {
+ "name": "HTTPSRule",
+ "properties": {
+ "loadDistribution": "Default",
+ "frontendIPConfiguration": {
+ "id": "[variables('feIpConfigId')]"
+ },
+ "backendAddressPool": {
+ "id": "[variables('bepoolID')]"
+ },
+ "protocol": "Tcp",
+ "frontendPort": 443,
+ "backendPort": 443,
+ "enableFloatingIP": false,
+ "idleTimeoutInMinutes": 5,
+ "probe": {
+ "id": "[concat(resourceId('Microsoft.Network/loadBalancers', variables('lbName')), '/probes/', variables('httpsProbeName'))]"
+ }
+ }
+ },
+ {
+ "name": "HTTPRule2",
+ "properties": {
+ "loadDistribution": "Default",
+ "frontendIPConfiguration": {
+ "id": "[concat(variables('feIpConfigId'),'2')]"
+ },
+ "backendAddressPool": {
+ "id": "[concat(variables('bepoolID'),'2')]"
+ },
+ "protocol": "Tcp",
+ "frontendPort": 80,
+ "backendPort": 80,
+ "enableFloatingIP": false,
+ "idleTimeoutInMinutes": 5,
+ "probe": {
+ "id": "[concat(variables('lbId'), '/probes/', variables('httpProbeName'),'2')]"
+ }
+ }
+ },
+ {
+ "name": "HTTPSRule2",
+ "properties": {
+ "loadDistribution": "Default",
+ "frontendIPConfiguration": {
+ "id": "[concat(variables('feIpConfigId'),'2')]"
+ },
+ "backendAddressPool": {
+ "id": "[concat(variables('bepoolID'),'2')]"
+ },
+ "protocol": "Tcp",
+ "frontendPort": 443,
+ "backendPort": 443,
+ "enableFloatingIP": false,
+ "idleTimeoutInMinutes": 5,
+ "probe": {
+ "id": "[concat(resourceId('Microsoft.Network/loadBalancers', variables('lbName')), '/probes/', variables('httpsProbeName'),'2')]"
+ }
+ }
+ }
+ ],
+ "probes": [
+ {
+ "name": "[variables('httpProbeName')]",
+ "properties": {
+ "protocol": "Http",
+ "requestPath": "/artifactory/api/system/ping",
+ "port": 80,
+ "intervalInSeconds": 60,
+ "numberOfProbes": 5
+ }
+ },
+ {
+ "name": "[variables('httpsProbeName')]",
+ "properties": {
+ "protocol": "Tcp",
+ "port": 443,
+ "intervalInSeconds": 60,
+ "numberOfProbes": 5
+ }
+ },
+ {
+ "name": "[concat(variables('httpProbeName'),'2')]",
+ "properties": {
+ "protocol": "Http",
+ "requestPath": "/artifactory/api/system/ping",
+ "port": 80,
+ "intervalInSeconds": 60,
+ "numberOfProbes": 5
+ }
+ },
+ {
+ "name": "[concat(variables('httpsProbeName'),'2')]",
+ "properties": {
+ "protocol": "Tcp",
+ "port": 443,
+ "intervalInSeconds": 60,
+ "numberOfProbes": 5
+ }
+ }
+ ]
+ }
+ },
+ {
+ "apiVersion": "[variables('apiVersion')]",
+ "type": "Microsoft.Storage/storageAccounts",
+ "name": "[variables('storageAccountName')]",
+ "location": "[resourceGroup().location]",
+ "properties": {
+ "accountType": "[variables('storageAccountType')]"
+ }
+ },
+ {
+ "type": "Microsoft.Resources/deployments",
+ "name": "deploySQLDB",
+ "apiVersion": "2014-04-01",
+ "properties": {
+ "mode": "Incremental",
+ "templateLink": {
+ "uri": "[variables('dbTemplateLocation')]",
+ "contentVersion": "1.0.0.0"
+ },
+ "parameters": {
+ "db_user": {
+ "value": "[parameters('DB_Admin_User')]"
+ },
+ "db_password": {
+ "value": "[parameters('DB_Admin_Password')]"
+ },
+ "db_server": {
+ "value": "[variables('azureSqlServerName')]"
+ },
+ "db_name": {
+ "value": "[parameters('DB_Name')]"
+ },
+ "db_edition": {
+ "value": "[parameters('DB_Edition')]"
+ },
+ "db_location": {
+ "value": "[parameters('DB_Location')]"
+ }
+ }
+ }
+ },
+ {
+ "type": "Microsoft.Compute/virtualMachineScaleSets",
+ "name": "[variables('scaleSetName')]",
+ "location": "[resourceGroup().location]",
+ "apiVersion": "2017-03-30",
+ "dependsOn": [
+ "[concat('Microsoft.Network/loadBalancers/', variables('lbName'))]",
+ "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]",
+ "[concat('Microsoft.Resources/deployments/', 'deploySQLDB')]",
+ "[concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]"
+ ],
+ "sku": {
+ "name": "[parameters('vmSku')]",
+ "tier": "Standard",
+ "capacity": "[1]"
+ },
+ "properties": {
+ "singlePlacementGroup": true,
+ "upgradePolicy": {
+ "mode": "Manual"
+ },
+ "virtualMachineProfile": {
+ "storageProfile": {
+ "osDisk": {
+ "caching": "ReadWrite",
+ "diskSizeGB": "250",
+ "createOption": "FromImage"
+ },
+ "imageReference": "[variables('imageReference')]"
+ },
+ "osProfile": {
+ "computerNamePrefix": "[variables('namingInfix')]",
+ "adminUsername": "[parameters('adminUsername')]",
+ "adminPassword": "[parameters('adminPassword')]",
+ "customData": "[base64(concat('#INSTALL SCRIPT INPUTS\nCERTIFICATE_KEY=',parameters('certificateKey'),'\nCERTIFICATE=', parameters('certificate'),'\nCERTIFICATE_DOMAIN=',parameters('certificateDomain'),'\nARTIFACTORY_SERVER_NAME=',parameters('artifactoryServerName'),'\nEXTRA_JAVA_OPTS=',parameters('extraJavaOptions'),'\n'))]"
+ },
+ "networkProfile": {
+ "networkInterfaceConfigurations": [
+ {
+ "name": "[variables('nicName')]",
+ "properties": {
+ "primary": true,
+ "ipConfigurations": [
+ {
+ "name": "[concat(variables('ipConfigName'),'1')]",
+ "properties": {
+ "subnet": {
+ "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName')), '/subnets/', variables('subnetName'))]"
+ },
+ "loadBalancerBackendAddressPools": [
+ {
+ "id": "[concat('/subscriptions/', subscription().subscriptionId,'/resourceGroups/', resourceGroup().name, '/providers/Microsoft.Network/loadBalancers/', variables('lbName'), '/backendAddressPools/', variables('bePoolName'))]"
+ }
+ ],
+ "loadBalancerInboundNatPools": [
+ {
+ "id": "[concat('/subscriptions/', subscription().subscriptionId,'/resourceGroups/', resourceGroup().name, '/providers/Microsoft.Network/loadBalancers/', variables('lbName'), '/inboundNatPools/', variables('natPoolName'))]"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "extensionProfile": {
+ "extensions": [
+ {
+ "name": "extension1",
+ "properties": {
+ "publisher": "Microsoft.Azure.Extensions",
+ "type": "CustomScript",
+ "typeHandlerVersion": "2.0",
+ "autoUpgradeMinorVersion": false,
+ "settings": {
+ "fileUris": [
+ "[concat(parameters('_artifactsLocation'), 'scripts/','install_artifactory.sh')]"
+ ]
+ },
+ "protectedSettings": {
+ "commandToExecute": "[concat('sh install_artifactory.sh ',reference('Microsoft.Resources/deployments/deploySQLDB').outputs.jdbcConnString.value,' ',variables('DB_Name'),' ',variables('DB_Admin_User'),' ',variables('DB_Admin_Password'),' ',variables('storageAccountName'),' ',variables('vmStorageAccountContainerName'),' ',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), variables('apiVersion')).key1,' ',variables('artifactoryVersion'),' ',variables('masterKey'), ' true',' ',variables('artifactoryLicense1'),' ',variables('artifactoryLicense2'),' ',variables('artifactoryLicense3'),' ',variables('artifactoryLicense4'),' ',variables('artifactoryLicense5'))]"
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "type": "Microsoft.Compute/virtualMachineScaleSets",
+ "name": "[concat(variables('scaleSetName'),'2')]",
+ "location": "[resourceGroup().location]",
+ "apiVersion": "2017-03-30",
+ "dependsOn": [
+ "[concat('Microsoft.Network/loadBalancers/', variables('lbName'))]",
+ "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]",
+ "[concat('Microsoft.Compute/virtualMachineScaleSets/', variables('scaleSetName'))]",
+ "[concat('Microsoft.Resources/deployments/', 'deploySQLDB')]",
+ "[concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]"
+ ],
+ "sku": {
+ "name": "[parameters('vmSku')]",
+ "tier": "Standard",
+ "capacity": "[parameters('nodeCount')]"
+ },
+ "properties": {
+ "singlePlacementGroup": true,
+ "upgradePolicy": {
+ "mode": "Manual"
+ },
+ "virtualMachineProfile": {
+ "storageProfile": {
+ "osDisk": {
+ "caching": "ReadWrite",
+ "diskSizeGB": "250",
+ "createOption": "FromImage"
+ },
+ "imageReference": "[variables('imageReference')]"
+ },
+ "osProfile": {
+ "computerNamePrefix": "[variables('namingInfix')]",
+ "adminUsername": "[parameters('adminUsername')]",
+ "adminPassword": "[parameters('adminPassword')]",
+ "customData": "[base64(concat('#INSTALL SCRIPT INPUTS\nCERTIFICATE_KEY=',parameters('certificateKey'),'\nCERTIFICATE=', parameters('certificate'),'\nCERTIFICATE_DOMAIN=',parameters('certificateDomain'),'\nARTIFACTORY_SERVER_NAME=',parameters('artifactoryServerName'),'\nEXTRA_JAVA_OPTS=',parameters('extraJavaOptions'),'\n'))]"
+ },
+ "networkProfile": {
+ "networkInterfaceConfigurations": [
+ {
+ "name": "[concat(variables('nicName'),'2')]",
+ "properties": {
+ "primary": true,
+ "ipConfigurations": [
+ {
+ "name": "[concat(variables('ipConfigName'),'1')]",
+ "properties": {
+ "subnet": {
+ "id": "[concat(resourceId('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName')), '/subnets/', variables('subnetName'))]"
+ },
+ "loadBalancerBackendAddressPools": [
+ {
+ "id": "[concat('/subscriptions/', subscription().subscriptionId,'/resourceGroups/', resourceGroup().name, '/providers/Microsoft.Network/loadBalancers/', variables('lbName'), '/backendAddressPools/', variables('bePoolName'),'2')]"
+ }
+ ],
+ "loadBalancerInboundNatPools": [
+ {
+ "id": "[concat('/subscriptions/', subscription().subscriptionId,'/resourceGroups/', resourceGroup().name, '/providers/Microsoft.Network/loadBalancers/', variables('lbName'), '/inboundNatPools/', variables('natPoolName'),'2')]"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "extensionProfile": {
+ "extensions": [
+ {
+ "name": "extension1",
+ "properties": {
+ "publisher": "Microsoft.Azure.Extensions",
+ "type": "CustomScript",
+ "typeHandlerVersion": "2.0",
+ "autoUpgradeMinorVersion": false,
+ "settings": {
+ "fileUris": [
+ "[concat(parameters('_artifactsLocation'), 'scripts/','install_artifactory.sh')]"
+ ]
+ },
+ "protectedSettings": {
+ "commandToExecute": "[concat('sh install_artifactory.sh ',reference('Microsoft.Resources/deployments/deploySQLDB').outputs.jdbcConnString.value,' ',variables('DB_Name'),' ',variables('DB_Admin_User'),' ',variables('DB_Admin_Password'),' ',variables('storageAccountName'),' ',variables('vmStorageAccountContainerName'),' ',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), variables('apiVersion')).key1,' ',variables('artifactoryVersion'),' ',variables('masterKey'), ' false',' ',variables('artifactoryLicense1'),' ',variables('artifactoryLicense2'),' ',variables('artifactoryLicense3'),' ',variables('artifactoryLicense4'),' ',variables('artifactoryLicense5'))]"
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "outputs": {
+ "fqdn": {
+ "value": "[reference(resourceId('Microsoft.Network/publicIPAddresses',concat(variables('pipName'),'2')),'2016-03-30').dnsSettings.fqdn]",
+ "type": "string"
+ }
+ }
+}
diff --git a/AzureResourceManager/azuredeploy.parameters.json b/AzureResourceManager/azuredeploy.parameters.json
new file mode 100644
index 0000000..f11fcae
--- /dev/null
+++ b/AzureResourceManager/azuredeploy.parameters.json
@@ -0,0 +1,27 @@
+{
+ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "vmSku": {
+ "value": "Standard_A4"
+ },
+ "vmssName": {
+ "value": "GEN-UNIQUE"
+ },
+ "capacity": {
+ "value": 1
+ },
+ "adminUsername": {
+ "value": "ubuntu"
+ },
+ "adminPassword": {
+ "value": "GEN-PASSWORD"
+ },
+ "artifactoryVersion": {
+ "value": "5.8.1"
+ },
+ "masterKey": {
+ "value": "35767fa0164bac66b6cccb8880babefb"
+ }
+ }
+}
\ No newline at end of file
diff --git a/AzureResourceManager/images/HA_Diagram.png b/AzureResourceManager/images/HA_Diagram.png
new file mode 100644
index 0000000..98cd3ee
Binary files /dev/null and b/AzureResourceManager/images/HA_Diagram.png differ
diff --git a/AzureResourceManager/images/Parameters.png b/AzureResourceManager/images/Parameters.png
new file mode 100644
index 0000000..7227baa
Binary files /dev/null and b/AzureResourceManager/images/Parameters.png differ
diff --git a/AzureResourceManager/images/add_licenses.png b/AzureResourceManager/images/add_licenses.png
new file mode 100644
index 0000000..3a06f9d
Binary files /dev/null and b/AzureResourceManager/images/add_licenses.png differ
diff --git a/AzureResourceManager/metadata.json b/AzureResourceManager/metadata.json
new file mode 100644
index 0000000..0f4d967
--- /dev/null
+++ b/AzureResourceManager/metadata.json
@@ -0,0 +1,7 @@
+{
+ "itemDisplayName": "Artifactory Enterprise Setup",
+ "description": "This template helps you setup a Artifactory Enterprise environment.",
+ "summary": "This template has setup Artifactory Enterprise cluster, MSSQL server to store metadata and Azure Blob storage container for storage.",
+ "githubUsername": "jainishshah17",
+ "dateUpdated": "2017-10-02"
+}
\ No newline at end of file
diff --git a/AzureResourceManager/nested/azureDBDeploy.json b/AzureResourceManager/nested/azureDBDeploy.json
new file mode 100644
index 0000000..e107ea0
--- /dev/null
+++ b/AzureResourceManager/nested/azureDBDeploy.json
@@ -0,0 +1,101 @@
+{
+ "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "db_user": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "artifactory"
+ },
+ "db_password": {
+ "type": "securestring",
+ "defaultValue": "jFrog123"
+ },
+ "db_server": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "artmssqlsrv"
+ },
+ "db_name": {
+ "type": "string",
+ "minLength": 1,
+ "defaultValue": "artdb"
+ },
+ "db_location": {
+ "type": "string",
+ "defaultValue": ""
+ },
+ "db_edition": {
+ "type": "string",
+ "allowedValues": [
+ "Basic",
+ "Standard",
+ "Premium"
+ ]
+ }
+ },
+ "variables": {
+ "apiVersion": "2015-05-01-preview",
+ "rtdbCollation": "Latin1_General_100_CS_AS",
+ "db_location": "[if(equals(parameters('db_location'), ''), resourceGroup().location, parameters('db_location'))]"
+ },
+ "resources": [
+ {
+ "name": "[parameters('db_server')]",
+ "type": "Microsoft.Sql/servers",
+ "kind": "v12.0",
+ "location": "[variables('db_location')]",
+ "apiVersion": "[variables('apiVersion')]",
+ "dependsOn": [
+
+ ],
+ "tags": {
+ "displayName": "artifactoryDB"
+ },
+ "properties": {
+ "administratorLogin": "[parameters('db_user')]",
+ "administratorLoginPassword": "[parameters('db_password')]",
+ "version": "12.0"
+ },
+ "resources": [
+ {
+ "name": "[uniqueString(parameters('db_server'), 'AllowAllWindowsAzureIps' )]",
+ "type": "firewallrules",
+ "location": "[variables('db_location')]",
+ "apiVersion": "[variables('apiVersion')]",
+ "dependsOn": [
+ "[concat('Microsoft.Sql/servers/', parameters('db_server'))]"
+ ],
+ "properties": {
+ "startIpAddress": "0.0.0.0",
+ "endIpAddress": "0.0.0.0"
+ }
+ },
+ {
+ "name": "[parameters('db_name')]",
+ "type": "databases",
+ "kind": "v12.0,user",
+ "location": "[variables('db_location')]",
+ "apiVersion": "[variables('apiVersion')]",
+ "dependsOn": [
+ "[parameters('db_server')]"
+ ],
+ "tags": {
+ "displayName": "artifactoryDB"
+ },
+ "properties": {
+ "edition": "[parameters('db_edition')]",
+ "maxSizeBytes": "1073741824",
+ "collation": "[variables('rtdbCollation')]"
+ }
+ }
+ ]
+ }
+ ],
+ "outputs": {
+ "jdbcConnString": {
+ "type": "string",
+ "value": "[concat('jdbc:sqlserver://', reference(concat('Microsoft.Sql/servers/', parameters('db_server'))).fullyQualifiedDomainName, ':1433')]"
+ }
+ }
+}
diff --git a/AzureResourceManager/scripts/install_artifactory.sh b/AzureResourceManager/scripts/install_artifactory.sh
new file mode 100644
index 0000000..c5dedbf
--- /dev/null
+++ b/AzureResourceManager/scripts/install_artifactory.sh
@@ -0,0 +1,218 @@
+#!/bin/bash
+
+DB_URL=$1
+DB_NAME=$2
+DB_USER=$3
+DB_PASSWORD=$4
+
+STORAGE_ACCT=$5
+STORAGE_CONTAINER=$6
+STORAGE_ACCT_KEY=$7
+ARTIFACTORY_VERSION=$8
+MASTER_KEY=$9
+IS_PRIMARY=$10
+
+ARTIFACTORY_LICENSE_1=$11
+ARTIFACTORY_LICENSE_2=$12
+ARTIFACTORY_LICENSE_3=$13
+ARTIFACTORY_LICENSE_4=$14
+ARTIFACTORY_LICENSE_5=$15
+
+export DEBIAN_FRONTEND=noninteractive
+
+# install the wget and curl
+apt-get update
+apt-get -y install wget curl>> /tmp/install-curl.log 2>&1
+
+# install Java 8
+add-apt-repository -y ppa:webupd8team/java
+apt-get update
+echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections
+apt-get install -y oracle-java8-installer>> /tmp/install-java8.log 2>&1
+
+#Generate Self-Signed Cert
+mkdir -p /etc/pki/tls/private/ /etc/pki/tls/certs/
+openssl req -nodes -x509 -newkey rsa:4096 -keyout /etc/pki/tls/private/example.key -out /etc/pki/tls/certs/example.pem -days 356 -subj "/C=US/ST=California/L=SantaClara/O=IT/CN=*.localhost"
+
+# install the MySQL stack
+echo "deb https://jfrog.bintray.com/artifactory-pro-debs trusty main" | tee -a /etc/apt/sources.list
+curl https://bintray.com/user/downloadSubjectPublicKey?username=jfrog | apt-key add -
+apt-get update
+apt-get -y install nginx>> /tmp/install-nginx.log 2>&1
+apt-get -y install jfrog-artifactory-pro=${ARTIFACTORY_VERSION} >> /tmp/install-artifactory.log 2>&1
+
+#Install database drivers
+curl -L -o /opt/jfrog/artifactory/tomcat/lib/mysql-connector-java-5.1.38.jar https://bintray.com/artifact/download/bintray/jcenter/mysql/mysql-connector-java/5.1.38/mysql-connector-java-5.1.38.jar
+curl -L -o /opt/jfrog/artifactory/tomcat/lib/mssql-jdbc-6.2.1.jre8.jar https://bintray.com/artifact/download/bintray/jcenter/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre8/mssql-jdbc-6.2.1.jre8.jar
+curl -L -o /opt/jfrog/artifactory/tomcat/lib/postgresql-9.4.1212.jar https://jdbc.postgresql.org/download/postgresql-9.4.1212.jar
+
+CERTIFICATE_DOMAIN=$(cat /var/lib/cloud/instance/user-data.txt | grep "^CERTIFICATE_DOMAIN=" | sed "s/CERTIFICATE_DOMAIN=//")
+[ -z "$CERTIFICATE_DOMAIN" ] && CERTIFICATE_DOMAIN=artifactory
+
+ARTIFACTORY_SERVER_NAME=$(cat /var/lib/cloud/instance/user-data.txt | grep "^ARTIFACTORY_SERVER_NAME=" | sed "s/ARTIFACTORY_SERVER_NAME=//")
+[ -z "$ARTIFACTORY_SERVER_NAME" ] && ARTIFACTORY_SERVER_NAME=artifactory
+
+#Configuring nginx
+rm /etc/nginx/sites-enabled/default
+
+cat </etc/nginx/nginx.conf
+ #user nobody;
+ worker_processes 1;
+ error_log /var/log/nginx/error.log info;
+ #pid logs/nginx.pid;
+ events {
+ worker_connections 1024;
+ }
+
+ http {
+ include mime.types;
+ include /etc/nginx/conf.d/*.conf;
+ default_type application/octet-stream;
+ log_format main '$remote_addr - $remote_user [$time_local] "$request" '
+ '$status $body_bytes_sent "$http_referer" '
+ '"$http_user_agent" "$http_x_forwarded_for"';
+ access_log /var/log/nginx/access.log main;
+ sendfile on;
+ #tcp_nopush on;
+ #keepalive_timeout 0;
+ keepalive_timeout 65;
+ }
+EOF
+
+cat </etc/nginx/conf.d/artifactory.conf
+ssl_certificate /etc/pki/tls/certs/cert.pem;
+ssl_certificate_key /etc/pki/tls/private/cert.key;
+ssl_session_cache shared:SSL:1m;
+ssl_prefer_server_ciphers on;
+## server configuration
+server {
+ listen 443 ssl;
+ listen 80 ;
+ server_name ~(?.+)\\.${CERTIFICATE_DOMAIN} artifactory ${ARTIFACTORY_SERVER_NAME}.${CERTIFICATE_DOMAIN};
+ if (\$http_x_forwarded_proto = '') {
+ set \$http_x_forwarded_proto \$scheme;
+ }
+ ## Application specific logs
+ ## access_log /var/log/nginx/artifactory-access.log timing;
+ ## error_log /var/log/nginx/artifactory-error.log;
+ rewrite ^/$ /artifactory/webapp/ redirect;
+ rewrite ^/artifactory/?(/webapp)?$ /artifactory/webapp/ redirect;
+ rewrite ^/(v1|v2)/(.*) /artifactory/api/docker/\$repo/\$1/\$2;
+ chunked_transfer_encoding on;
+ client_max_body_size 0;
+ location /artifactory/ {
+ proxy_read_timeout 900;
+ proxy_pass_header Server;
+ proxy_cookie_path ~*^/.* /;
+ proxy_pass http://127.0.0.1:8081/artifactory/;
+ proxy_set_header X-Artifactory-Override-Base-Url
+ \$http_x_forwarded_proto://\$host:\$server_port/artifactory;
+ proxy_set_header X-Forwarded-Port \$server_port;
+ proxy_set_header X-Forwarded-Proto \$http_x_forwarded_proto;
+ proxy_set_header Host \$http_host;
+ proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
+ }
+}
+EOF
+
+cat </var/opt/jfrog/artifactory/etc/artifactory.cluster.license
+${ARTIFACTORY_LICENSE_1}
+
+${ARTIFACTORY_LICENSE_2}
+
+${ARTIFACTORY_LICENSE_3}
+
+${ARTIFACTORY_LICENSE_4}
+
+${ARTIFACTORY_LICENSE_5}
+EOF
+
+cat </var/opt/jfrog/artifactory/etc/ha-node.properties
+node.id=art1
+artifactory.ha.data.dir=/var/opt/jfrog/artifactory/data
+context.url=http://127.0.0.1:8081/artifactory
+membership.port=10001
+hazelcast.interface=172.25.0.3
+primary=${IS_PRIMARY}
+EOF
+
+cat </var/opt/jfrog/artifactory/etc/db.properties
+type=mssql
+driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
+url=${DB_URL};databaseName=${DB_NAME};sendStringParametersAsUnicode=false;applicationName=Artifactory Binary Repository
+username=${DB_USER}
+password=${DB_PASSWORD}
+EOF
+
+mkdir -p /var/opt/jfrog/artifactory/etc/security
+
+cat </var/opt/jfrog/artifactory/etc/security/master.key
+${MASTER_KEY}
+EOF
+
+cat </var/opt/jfrog/artifactory/etc/binarystore.xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ crossNetworkStrategy
+ crossNetworkStrategy
+ 2
+ 1
+
+
+
+
+ remote
+
+
+
+ local
+
+
+
+
+ ${STORAGE_ACCT}
+ ${STORAGE_ACCT_KEY}
+ https://${STORAGE_ACCT}.blob.core.windows.net/
+ ${STORAGE_CONTAINER}
+
+
+EOF
+
+HOSTNAME=$(hostname -i)
+sed -i -e "s/art1/art-$(date +%s$RANDOM)/" /var/opt/jfrog/artifactory/etc/ha-node.properties
+sed -i -e "s/127.0.0.1/$HOSTNAME/" /var/opt/jfrog/artifactory/etc/ha-node.properties
+sed -i -e "s/172.25.0.3/$HOSTNAME/" /var/opt/jfrog/artifactory/etc/ha-node.properties
+
+cat /var/lib/cloud/instance/user-data.txt | grep "^CERTIFICATE=" | sed "s/CERTIFICATE=//" > /tmp/temp.pem
+cat /tmp/temp.pem | sed 's/CERTIFICATE----- /&\n/g' | sed 's/ -----END/\n-----END/g' | awk '{if($0 ~ /----/) {print;} else { gsub(/ /,"\n");print;}}' > /etc/pki/tls/certs/cert.pem
+rm /tmp/temp.pem
+
+cat /var/lib/cloud/instance/user-data.txt | grep "^CERTIFICATE_KEY=" | sed "s/CERTIFICATE_KEY=//" > /tmp/temp.key
+cat /tmp/temp.key | sed 's/KEY----- /&\n/' | sed 's/ -----END/\n-----END/' | awk '{if($0 ~ /----/) {print;} else { gsub(/ /,"\n");print;}}' > /etc/pki/tls/private/cert.key
+rm /tmp/temp.key
+
+echo "artifactory.ping.allowUnauthenticated=true" >> /var/opt/jfrog/artifactory/etc/artifactory.system.properties
+EXTRA_JAVA_OPTS=$(cat /var/lib/cloud/instance/user-data.txt | grep "^EXTRA_JAVA_OPTS=" | sed "s/EXTRA_JAVA_OPTS=//")
+[ -z "$EXTRA_JAVA_OPTS" ] && EXTRA_JAVA_OPTS='-server -Xms2g -Xmx12g -Xss256k -XX:+UseG1GC -XX:OnOutOfMemoryError="kill -9 %p"'
+echo "export JAVA_OPTIONS=\"${EXTRA_JAVA_OPTS}\"" >> /var/opt/jfrog/artifactory/etc/default
+chown artifactory:artifactory -R /var/opt/jfrog/artifactory/* && chown artifactory:artifactory -R /var/opt/jfrog/artifactory/etc/security && chown artifactory:artifactory -R /var/opt/jfrog/artifactory/etc/*
+
+# start Artifactory
+sleep $((RANDOM % 120))
+service artifactory start
+service nginx start
+nginx -s reload