Skip to content

Commit

Permalink
Add support for PostgreSQL 15 (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
Victoremepunto authored Feb 28, 2023
1 parent 2288e66 commit e90bfd4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions controllers/cloud.redhat.com/providers/database/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
var DefaultImageDatabasePG10 = "quay.io/cloudservices/postgresql-rds:10-9ee2984"
var DefaultImageDatabasePG12 = "quay.io/cloudservices/postgresql-rds:12-9ee2984"
var DefaultImageDatabasePG13 = "quay.io/cloudservices/postgresql-rds:13-9ee2984"
var DefaultImageDatabasePG15 = "quay.io/cloudservices/postgresql-rds:15-e9e67a5"

// ProvName is the providers name ident.
var ProvName = "database"
Expand Down Expand Up @@ -38,6 +39,7 @@ func GetDatabase(c *p.Provider) (p.ClowderProvider, error) {
func init() {
p.ProvidersRegistration.Register(GetDatabase, 5, ProvName)
imageList = map[int32]string{
15: DefaultImageDatabasePG15,
13: DefaultImageDatabasePG13,
12: DefaultImageDatabasePG12,
10: DefaultImageDatabasePG10,
Expand Down

0 comments on commit e90bfd4

Please sign in to comment.