mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 01:06:55 -06:00
Replace RT and Xray version params with hardcoded values
This commit is contained in:
@@ -32,7 +32,6 @@ Metadata:
|
|||||||
default: JFrog Artifactory configuration
|
default: JFrog Artifactory configuration
|
||||||
Parameters:
|
Parameters:
|
||||||
- ArtifactoryProduct
|
- ArtifactoryProduct
|
||||||
- ArtifactoryVersion
|
|
||||||
- NumberOfSecondary
|
- NumberOfSecondary
|
||||||
- SmLicenseName
|
- SmLicenseName
|
||||||
- SmCertName
|
- SmCertName
|
||||||
@@ -53,7 +52,6 @@ Metadata:
|
|||||||
default: JFrog Xray Configuration
|
default: JFrog Xray Configuration
|
||||||
Parameters:
|
Parameters:
|
||||||
- InstallXray
|
- InstallXray
|
||||||
- XrayVersion
|
|
||||||
- XrayNumberOfInstances
|
- XrayNumberOfInstances
|
||||||
- XrayInstanceType
|
- XrayInstanceType
|
||||||
- XrayDatabaseUser
|
- XrayDatabaseUser
|
||||||
@@ -91,8 +89,6 @@ Metadata:
|
|||||||
default: Secondary instances
|
default: Secondary instances
|
||||||
ArtifactoryProduct:
|
ArtifactoryProduct:
|
||||||
default: Artifactory product to install
|
default: Artifactory product to install
|
||||||
ArtifactoryVersion:
|
|
||||||
default: Artifactory version
|
|
||||||
SmLicenseName:
|
SmLicenseName:
|
||||||
default: Artifactory licenses secret name
|
default: Artifactory licenses secret name
|
||||||
SmCertName:
|
SmCertName:
|
||||||
@@ -130,8 +126,6 @@ Metadata:
|
|||||||
Parameters:
|
Parameters:
|
||||||
AvailabilityZones:
|
AvailabilityZones:
|
||||||
Description: List of Availability Zones to use for the subnets in the VPC. Two
|
Description: List of Availability Zones to use for the subnets in the VPC. Two
|
||||||
XrayVersion:
|
|
||||||
default: Version of Xray to install
|
|
||||||
Availability Zones are used for this deployment.
|
Availability Zones are used for this deployment.
|
||||||
Type: List<AWS::EC2::AvailabilityZone::Name>
|
Type: List<AWS::EC2::AvailabilityZone::Name>
|
||||||
KeyPairName:
|
KeyPairName:
|
||||||
@@ -245,14 +239,6 @@ Parameters:
|
|||||||
- JFrog-Container-Registry
|
- JFrog-Container-Registry
|
||||||
Default: JFrog-Artifactory-Pro
|
Default: JFrog-Artifactory-Pro
|
||||||
Type: String
|
Type: String
|
||||||
ArtifactoryVersion:
|
|
||||||
Description: Version of Artifactory that you want to deploy into the Quick Start.
|
|
||||||
See the release notes to select the version you want to deploy at
|
|
||||||
https://www.jfrog.com/confluence/display/RTF/Release+Notes.
|
|
||||||
AllowedPattern: ^(([0-9]|[1-9][0-9])\.){2}([1-9][0-9]|[0-9])$
|
|
||||||
ConstraintDescription: A version that matches X.X.X per Artifactory releases
|
|
||||||
Default: 7.15.3
|
|
||||||
Type: String
|
|
||||||
SmLicenseName:
|
SmLicenseName:
|
||||||
Description: Secret name created in AWS Secrets Manager, which contains the Artifactory licenses.
|
Description: Secret name created in AWS Secrets Manager, which contains the Artifactory licenses.
|
||||||
Default: ''
|
Default: ''
|
||||||
@@ -354,12 +340,6 @@ Parameters:
|
|||||||
- "false"
|
- "false"
|
||||||
Default: "true"
|
Default: "true"
|
||||||
Type: String
|
Type: String
|
||||||
XrayVersion:
|
|
||||||
Description: The version of Xray that you want to deploy into the Quick Start.
|
|
||||||
AllowedPattern: ^(([0-9]|[1-9][0-9])\.){2}([1-9][0-9]|[0-9])$
|
|
||||||
ConstraintDescription: A version that matches X.X.X per Xray releases.
|
|
||||||
Default: 3.17.4
|
|
||||||
Type: String
|
|
||||||
XrayNumberOfInstances:
|
XrayNumberOfInstances:
|
||||||
Description: The number of Xray instances servers to complete your
|
Description: The number of Xray instances servers to complete your
|
||||||
HA deployment. The minimum number is one; the maximum is seven.
|
HA deployment. The minimum number is one; the maximum is seven.
|
||||||
@@ -646,7 +626,8 @@ Resources:
|
|||||||
ArtifactoryPrimary: true
|
ArtifactoryPrimary: true
|
||||||
MasterKey: !Ref MasterKey
|
MasterKey: !Ref MasterKey
|
||||||
ExtraJavaOptions: !If [DefaultJava, !Sub "${ArtifactoryCoreInfraStack.Outputs.JavaOpts} ${ExtraJavaOptions}", !Ref ExtraJavaOptions]
|
ExtraJavaOptions: !If [DefaultJava, !Sub "${ArtifactoryCoreInfraStack.Outputs.JavaOpts} ${ExtraJavaOptions}", !Ref ExtraJavaOptions]
|
||||||
ArtifactoryVersion: !Ref ArtifactoryVersion
|
AmiId: "7153"
|
||||||
|
ArtifactoryVersion: "7.15.3"
|
||||||
KeyPairName: !Ref KeyPairName
|
KeyPairName: !Ref KeyPairName
|
||||||
HostProfile: !Ref ArtifactoryHostProfile
|
HostProfile: !Ref ArtifactoryHostProfile
|
||||||
SecurityGroups: !Ref ArtifactoryEc2Sg
|
SecurityGroups: !Ref ArtifactoryEc2Sg
|
||||||
@@ -669,7 +650,6 @@ Resources:
|
|||||||
MaxScalingNodes: !Ref NumberOfSecondary
|
MaxScalingNodes: !Ref NumberOfSecondary
|
||||||
DeploymentTag: ArtifactorySecondary
|
DeploymentTag: ArtifactorySecondary
|
||||||
HostRole: !Ref ArtifactoryHostRole
|
HostRole: !Ref ArtifactoryHostRole
|
||||||
AmiId: !Join ['', !Split [".", !Ref ArtifactoryVersion]]
|
|
||||||
ArtifactoryProduct: !Ref ArtifactoryProduct
|
ArtifactoryProduct: !Ref ArtifactoryProduct
|
||||||
ArtifactoryLicensesSecretName: !Ref SmLicenseName
|
ArtifactoryLicensesSecretName: !Ref SmLicenseName
|
||||||
ArtifactoryServerName: !Ref ArtifactoryServerName
|
ArtifactoryServerName: !Ref ArtifactoryServerName
|
||||||
@@ -688,7 +668,8 @@ Resources:
|
|||||||
ArtifactoryPrimary: false
|
ArtifactoryPrimary: false
|
||||||
MasterKey: !Ref MasterKey
|
MasterKey: !Ref MasterKey
|
||||||
ExtraJavaOptions: !If [DefaultJava, !Sub "${ArtifactoryCoreInfraStack.Outputs.JavaOpts} ${ExtraJavaOptions}", !Ref ExtraJavaOptions]
|
ExtraJavaOptions: !If [DefaultJava, !Sub "${ArtifactoryCoreInfraStack.Outputs.JavaOpts} ${ExtraJavaOptions}", !Ref ExtraJavaOptions]
|
||||||
ArtifactoryVersion: !Ref ArtifactoryVersion
|
AmiId: "7153"
|
||||||
|
ArtifactoryVersion: "7.15.3"
|
||||||
KeyPairName: !Ref KeyPairName
|
KeyPairName: !Ref KeyPairName
|
||||||
HostProfile: !Ref ArtifactoryHostProfile
|
HostProfile: !Ref ArtifactoryHostProfile
|
||||||
SecurityGroups: !Ref ArtifactoryEc2Sg
|
SecurityGroups: !Ref ArtifactoryEc2Sg
|
||||||
@@ -783,8 +764,8 @@ Resources:
|
|||||||
XrayDatabasePassword: !Ref XrayDatabasePassword
|
XrayDatabasePassword: !Ref XrayDatabasePassword
|
||||||
XrayMasterDatabaseUrl: !GetAtt ArtifactoryCoreInfraStack.Outputs.XrayMasterDatabaseUrl
|
XrayMasterDatabaseUrl: !GetAtt ArtifactoryCoreInfraStack.Outputs.XrayMasterDatabaseUrl
|
||||||
XrayDatabaseUrl: !GetAtt ArtifactoryCoreInfraStack.Outputs.XrayDatabaseUrl
|
XrayDatabaseUrl: !GetAtt ArtifactoryCoreInfraStack.Outputs.XrayDatabaseUrl
|
||||||
XrayVersion: !Ref XrayVersion
|
XrayVersion: "3.17.4"
|
||||||
XrayAmiId: !Join ['', !Split [".", !Ref XrayVersion]]
|
XrayAmiId: "3174"
|
||||||
XrayHostRole: !Ref XrayHostRole
|
XrayHostRole: !Ref XrayHostRole
|
||||||
XrayHostProfile: !Ref XrayHostProfile
|
XrayHostProfile: !Ref XrayHostProfile
|
||||||
Outputs:
|
Outputs:
|
||||||
|
|||||||
Reference in New Issue
Block a user