Skip to content

Commit a5f8608

Browse files
committed
Remove PG13 references, add PG18 where needed for component images
1 parent fcde592 commit a5f8608

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

components/image-postgres/Dockerfile.postgres

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ set -e
1818
# see project for compatibility details:
1919
# https://github.com/pgaudit/pgaudit#postgresql-version-compatibility
2020
PGAUDIT_PKG="$(case "$POSTGRES_MAJOR_VERSION" in \
21-
13) echo pgaudit15_13 ;; \
2221
14) echo pgaudit16_14 ;; \
2322
15) echo pgaudit17_15 ;; \
2423
*) echo "pgaudit_${POSTGRES_MAJOR_VERSION}" ;; \

components/image-postgres/Dockerfile.postgres-upgrade

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
FROM localhost/crunchy-postgres:latest
66

7-
ARG POSTGRES_UPGRADE_VERSIONS="13 14 15 16 17"
7+
ARG POSTGRES_UPGRADE_VERSIONS="14 15 16 17 18"
88
ARG BASE_VERSION=ubi9
99

1010
USER 0
@@ -23,7 +23,6 @@ PKGS="$(for POSTGRES_VERSION in ${POSTGRES_UPGRADE_VERSIONS}; do
2323
POSTGRES_MAJOR_VERSION="${POSTGRES_VERSION%.*}"
2424

2525
case "$POSTGRES_MAJOR_VERSION" in
26-
13) PGAUDIT_PKG=pgaudit15_13 ;;
2726
14) PGAUDIT_PKG=pgaudit16_14 ;;
2827
15) PGAUDIT_PKG=pgaudit17_15 ;;
2928
*) PGAUDIT_PKG="pgaudit_${POSTGRES_MAJOR_VERSION}" ;;

0 commit comments

Comments
 (0)