From 60c7f6c44ef7721b9c2d9ac8c21149934ea8b7e2 Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Wed, 26 Nov 2025 06:08:34 +0100 Subject: [PATCH] Set 15.10 as default RDS version --- fleetshard/config/config.go | 2 +- fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fleetshard/config/config.go b/fleetshard/config/config.go index fe2ac9b5ba..0c098ef9dd 100644 --- a/fleetshard/config/config.go +++ b/fleetshard/config/config.go @@ -53,7 +53,7 @@ type ManagedDB struct { SecurityGroup string `env:"MANAGED_DB_SECURITY_GROUP"` SubnetGroup string `env:"MANAGED_DB_SUBNET_GROUP"` PerformanceInsights bool `env:"MANAGED_DB_PERFORMANCE_INSIGHTS" envDefault:"false"` - EngineVersion string `env:"MANAGED_DB_ENGINE_VERSION" envDefault:"13.9"` // See AWS RDS release calendar: https://docs.aws.amazon.com/AmazonRDS/latest/PostgreSQLReleaseNotes/postgresql-release-calendar.html + EngineVersion string `env:"MANAGED_DB_ENGINE_VERSION" envDefault:"15.10"` // See AWS Aurora PostgreSQL release calendar: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/aurorapostgresql-release-calendar.html AutoVersionUpgrade bool `env:"MANAGED_DB_AUTO_VERSION_UPGRADE" envDefault:"false"` // minor version upgrades only. Disable until figure out the strategy. s\See: ROX-16099 BackupRetentionPeriod int32 `env:"MANAGED_DB_BACKUP_RETENTION_PERIOD" envDefault:"30"` // days ClusterParameterGroup string `env:"MANAGED_DB_CLUSTER_PARAMETER_GROUP"` // if empty, the default parameter group for the engine version will be used diff --git a/fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go b/fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go index adaa6482c7..f9786f4694 100644 --- a/fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go +++ b/fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go @@ -38,7 +38,7 @@ func newTestRDS() (*RDS, error) { cfg.SecurityGroup = os.Getenv("MANAGED_DB_SECURITY_GROUP") cfg.SubnetGroup = os.Getenv("MANAGED_DB_SUBNET_GROUP") cfg.BackupRetentionPeriod = 1 - cfg.EngineVersion = "13.9" + cfg.EngineVersion = "15.10" cfg.MinCapacityACU = 0.5 cfg.MaxCapacityACU = 1