Skip to content

Commit

Permalink
Sonar 4.17.0.10.0 (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonar-cpapke authored Jan 30, 2025
1 parent 784b3e5 commit 4e360d7
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sonar_upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ jobs:
DEPLOYMENT_EXAMPLE_DIR: ./examples/aws/poc/dsf_deployment
UPGRADE_EXAMPLE_DIR: ./examples/aws/sonar_upgrade
AWS_REGION: eu-west-2
SONAR_TARGET_VERSION: 4.16.0.20.0
SONAR_TARGET_VERSION: 4.17.0.10.0
TF_VAR_enable_sonar: ${{ matrix.enable_sonar }}
TF_VAR_enable_dam: ${{ matrix.enable_dam }}
TF_VAR_enable_dra: ${{ matrix.enable_dra }}
TF_VAR_sonar_version: 4.14.0.20
TF_VAR_sonar_version: 4.15.0.20
TF_VAR_hub_hadr: ${{ matrix.hub_hadr }}
TF_VAR_agentless_gw_hadr: ${{ matrix.agentless_gw_hadr }}
TF_VAR_simulation_db_types_for_agentless: ${{ matrix.simulation_db_types_for_agentless }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ variable "dra_analytics_key_pair" {

variable "sonar_version" {
type = string
default = "4.16"
default = "4.17"
description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch."
validation {
condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "deployment_name" {

variable "sonar_version" {
type = string
default = "4.16"
default = "4.17"
description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch."
validation {
condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variable "aws_region" {

variable "sonar_version" {
type = string
default = "4.16"
default = "4.17"
description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch."
validation {
condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.")
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/poc/dsf_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ variable "dam_agent_installation_location" {

variable "sonar_version" {
type = string
default = "4.16"
default = "4.17"
description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch."
validation {
condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.")
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/poc/sonar_basic_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "deployment_name" {

variable "sonar_version" {
type = string
default = "4.16"
default = "4.17"
description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch."
validation {
condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.")
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/poc/sonar_hadr_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "deployment_name" {

variable "sonar_version" {
type = string
default = "4.16"
default = "4.17"
description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch."
validation {
condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.")
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/poc/dsf_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ variable "simulation_db_types_for_agent" {

variable "sonar_version" {
type = string
default = "4.16"
default = "4.17"
description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch."
validation {
condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.")
Expand Down
3 changes: 3 additions & 0 deletions modules/aws/core/globals/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
locals {
sonar_tarball_s3_key_map = {
"4.17" = "jsonar-4.17.0.10.0.tar.gz"
"4.17.0.10" = "jsonar-4.17.0.10.0.tar.gz"

"4.16" = "jsonar-4.16.0.20.0.tar.gz"
"4.16.0.20" = "jsonar-4.16.0.20.0.tar.gz"

Expand Down

0 comments on commit 4e360d7

Please sign in to comment.