mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 09:06:57 -06:00
7.7.3 (#39)
* ARM templates - 7.7.3 support added. Pro and JCR * ARM templates - Xray 3.8.2 support * ARM templates - Nginx configuration changed for JCR * ARM templates - Xray ARM extension script, yq added, Rabbitmq default password added * ARM templates - Xray, Extension script changes * ARM templates - RT readme updated, branch for extensions scripts switched back to master * ARM templates - JCR, updated API, best practives * ARM templates - Nginx configuration changed for JCR * ARM templates - MP submissions, Xray installation script changes, master key minimun char number added in JCR * ARM templates - Parameters draft
This commit is contained in:
Binary file not shown.
@@ -132,7 +132,7 @@
|
||||
"name": "artifactoryVersion",
|
||||
"type": "Microsoft.Common.DropDown",
|
||||
"label": "Artifactory-vm image version to deploy.",
|
||||
"defaultValue": "7.6.2",
|
||||
"defaultValue": "7.7.3",
|
||||
"toolTip": "Version of Artifactory to deploy",
|
||||
"constraints": {
|
||||
"allowedValues": [
|
||||
@@ -163,6 +163,10 @@
|
||||
{
|
||||
"label": "7.6.2",
|
||||
"value": "0.0.1"
|
||||
},
|
||||
{
|
||||
"label": "7.7.3",
|
||||
"value": "0.0.2"
|
||||
}
|
||||
],
|
||||
"required": true
|
||||
|
||||
@@ -79,7 +79,7 @@
|
||||
},
|
||||
"artifactoryVersion": {
|
||||
"type": "string",
|
||||
"defaultValue": "0.0.1",
|
||||
"defaultValue": "0.0.2",
|
||||
"allowedValues": [
|
||||
"6.6.0",
|
||||
"6.6.1",
|
||||
@@ -94,7 +94,8 @@
|
||||
"0.3.2",
|
||||
"7.4.3",
|
||||
"7.4.30",
|
||||
"0.0.1"
|
||||
"0.0.1",
|
||||
"0.0.2"
|
||||
],
|
||||
"metadata": {
|
||||
"description": "Artifactory-vm image version to deploy."
|
||||
|
||||
@@ -50,12 +50,11 @@ considering you have SSL certificate for `*.jfrog.team`
|
||||
|
||||
### Steps to upgrade Artifactory Version
|
||||
|
||||
1. Login into Primary VM instance and sudo as root. Use the admin credentials provided in the install setup.
|
||||
1. Login into first member 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
|
||||
```
|
||||
|
||||
@@ -67,9 +66,9 @@ Note: Use load balancer's NAT entries under Azure resources, to get the allocate
|
||||
4. Start artifactory and nginx services.
|
||||
```
|
||||
service artifactory start
|
||||
service nginx start
|
||||
```
|
||||
5. Repeat above steps for all member nodes.
|
||||
5. Repeat above steps for all member nodes then for primary node.
|
||||
6. To check the version of each node, open Administration -> Monitoring -> Service status
|
||||
|
||||
------
|
||||
#### Note:
|
||||
|
||||
@@ -79,7 +79,7 @@
|
||||
},
|
||||
"artifactoryVersion": {
|
||||
"type": "string",
|
||||
"defaultValue": "0.0.1",
|
||||
"defaultValue": "0.0.2",
|
||||
"allowedValues": [
|
||||
"6.6.0",
|
||||
"6.6.1",
|
||||
@@ -97,7 +97,8 @@
|
||||
"7.4.30",
|
||||
"7.4.31",
|
||||
"7.5.7",
|
||||
"0.0.1"
|
||||
"0.0.1",
|
||||
"0.0.2"
|
||||
],
|
||||
"metadata": {
|
||||
"description": "Artifactory-vm image version to deploy."
|
||||
@@ -242,7 +243,7 @@
|
||||
"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/jfrog/JFrog-Cloud-Installers/arm-xray/AzureResourceManager/Artifactory/"
|
||||
"defaultValue": "https://raw.githubusercontent.com/jfrog/JFrog-Cloud-Installers/master/AzureResourceManager/Artifactory/"
|
||||
},
|
||||
"_artifactsLocationSasToken": {
|
||||
"type": "securestring",
|
||||
|
||||
@@ -44,10 +44,10 @@
|
||||
"value": "postgressrvr"
|
||||
},
|
||||
"masterKey": {
|
||||
"value": "GEN-UNIQUE"
|
||||
"value": "GENERATE_MASTER_KEY"
|
||||
},
|
||||
"joinKey": {
|
||||
"value": "GEN-UNIQUE"
|
||||
"value": "GENERATE_JOIN_KEY"
|
||||
},
|
||||
"certificate": {
|
||||
"value": "-----BEGIN CERTIFICATE----- -----END CERTIFICATE-----"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Upgrade version for every release
|
||||
ARTIFACTORY_VERSION=7.6.2
|
||||
ARTIFACTORY_VERSION=7.7.3
|
||||
UBUNTU_CODENAME=$(cat /etc/lsb-release | grep "^DISTRIB_CODENAME=" | sed "s/DISTRIB_CODENAME=//")
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
Reference in New Issue
Block a user