Skip to content

Commit a8ee197

Browse files
authored
ROX-32009: Set 15.10 as default RDS version (#2494)
Set 15.10 as default RDS version
1 parent 81ad10d commit a8ee197

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fleetshard/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ type ManagedDB struct {
5353
SecurityGroup string `env:"MANAGED_DB_SECURITY_GROUP"`
5454
SubnetGroup string `env:"MANAGED_DB_SUBNET_GROUP"`
5555
PerformanceInsights bool `env:"MANAGED_DB_PERFORMANCE_INSIGHTS" envDefault:"false"`
56-
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
56+
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
5757
AutoVersionUpgrade bool `env:"MANAGED_DB_AUTO_VERSION_UPGRADE" envDefault:"false"` // minor version upgrades only. Disable until figure out the strategy. s\See: ROX-16099
5858
BackupRetentionPeriod int32 `env:"MANAGED_DB_BACKUP_RETENTION_PERIOD" envDefault:"30"` // days
5959
ClusterParameterGroup string `env:"MANAGED_DB_CLUSTER_PARAMETER_GROUP"` // if empty, the default parameter group for the engine version will be used

fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func newTestRDS() (*RDS, error) {
3838
cfg.SecurityGroup = os.Getenv("MANAGED_DB_SECURITY_GROUP")
3939
cfg.SubnetGroup = os.Getenv("MANAGED_DB_SUBNET_GROUP")
4040
cfg.BackupRetentionPeriod = 1
41-
cfg.EngineVersion = "13.9"
41+
cfg.EngineVersion = "15.10"
4242
cfg.MinCapacityACU = 0.5
4343
cfg.MaxCapacityACU = 1
4444

0 commit comments

Comments
 (0)