ARM templates. Removed support of older VM images to be compatible with GovCloud.

Only 7.12.5 and 7.12.6 versions are supported now.
Removed version selector script and installation script for Artifactory 6.x
Added new screenshots to the README.md, minor fixes.
This commit is contained in:
danielmkn
2021-01-14 15:27:43 -08:00
parent dad0c79a5e
commit 2179e8a3db
14 changed files with 21 additions and 548 deletions

View File

@@ -0,0 +1,68 @@
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"clusterName": {
"value": "rtha"
},
"adminUsername": {
"value": "vmuser"
},
"adminPassword": {
"value": "OWERWRITE_THE_PASSWORD"
},
"db_type": {
"value": "Postgresql_deploy.json"
},
"db_user": {
"value": "artifactory"
},
"db_password": {
"value": "OWERWRITE_THE_PASSWORD"
},
"db_name": {
"value": "artdb"
},
"db_edition": {
"value": "Basic"
},
"databases": {
"value": {
"properties": [
{
"name": "artdb",
"charset": "UTF8",
"collation": "English_United States.1252"
}
]
}
},
"manual_db_url": {
"value": "jdbc:postgresql://postgressrvr.postgres.database.azure.com:5432"
},
"db_server": {
"value": "postgressrvr"
},
"masterKey": {
"value": "GENERATE_MASTER_KEY"
},
"joinKey": {
"value": "GENERATE_JOIN_KEY"
},
"certificate": {
"value": "-----BEGIN CERTIFICATE----- <YOUR CERTIFICATE HERE> -----END CERTIFICATE-----"
},
"certificateKey": {
"value": "-----BEGIN PRIVATE KEY----- <YOUR CERTIFICATE HERE> -----END PRIVATE KEY-----"
},
"artifactoryLicense1": {
"value": "<ARTIFACTORY LICENCE FOR MASTER NODE>"
},
"artifactoryLicense2": {
"value": "<ARTIFACTORY LICENCE FOR MEMBER0 NODE>"
},
"artifactoryLicense3": {
"value": "<ARTIFACTORY LICENCE FOR MEMBER1 NODE>"
}
}
}