Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin postgres image tag version to 16 #3172

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pkg/app/postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type PostgresDB struct {
}

// NewPostgresDB initialises an instance of Postgres DB
// Last tested chart version "10.12.3". Also, we are using postgres version 13.4
// Last tested chart version "15.5.38". Also, we are using postgres version 16
func NewPostgresDB(name string, subPath string) App {
return &PostgresDB{
name: name,
Expand All @@ -62,6 +62,9 @@ func NewPostgresDB(name string, subPath string) App {
"primary.containerSecurityContext.capabilities.add[1]": "FOWNER",
"primary.containerSecurityContext.capabilities.add[2]": "DAC_OVERRIDE",
"primary.containerSecurityContext.readOnlyRootFilesystem": "false",
// Update manually whenever a new version is release.
// TODO: Automate the update process for the image tag.
"image.tag": "16-bullseye",
pavannd1 marked this conversation as resolved.
Show resolved Hide resolved
},
},
}
Expand Down
Loading