Skip to content

Commit

Permalink
fix(postgres-helm-compat): Build with the latest version of PostgreSQL (
Browse files Browse the repository at this point in the history
#2609)

Previously, this was pinned to PostgreSQL 15. Build with the latest release
from here on out

Signed-off-by: RJ Sampson <rj.sampson@chainguard.dev>
  • Loading branch information
EyeCantCU authored May 19, 2024
1 parent 2de9392 commit 3dd494e
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions images/postgres-helm-compat/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,16 @@ variable "target_repository" {
description = "The docker repo into which the image and attestations should be published."
}

locals {
# TODO: Define a virtual postgres package
version = "15"
}

module "latest-config" {
source = "./config"

extra_packages = [
"postgresql-${local.version}",
"postgresql-${local.version}-client",
"postgresql-${local.version}-oci-entrypoint",
"postgresql-${local.version}-contrib",
"postgresql-${local.version}-bitnami-compat",
"libpq-${local.version}",
"postgresql",
"postgresql-client",
"postgresql-oci-entrypoint",
"postgresql-contrib",
"postgresql-bitnami-compat",
"libpq",
]
}

Expand Down

0 comments on commit 3dd494e

Please sign in to comment.