Skip to content

Commit

Permalink
Daily automatic update
Browse files Browse the repository at this point in the history
  • Loading branch information
EnterpriseDB Automated Updates committed Oct 17, 2024
1 parent 4d3ba8e commit 481809f
Show file tree
Hide file tree
Showing 61 changed files with 829 additions and 757 deletions.
2 changes: 1 addition & 1 deletion UBI/12/.versions-ubi8.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"BARMAN_VERSION": "3.11.1",
"IMAGE_RELEASE_VERSION": "35",
"IMAGE_RELEASE_VERSION": "36",
"POSTGRES_VERSION": "12.20",
"UBI_VERSION": "8.10-1088"
}
2 changes: 1 addition & 1 deletion UBI/12/.versions-ubi9.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"BARMAN_VERSION": "3.11.1",
"IMAGE_RELEASE_VERSION": "36",
"IMAGE_RELEASE_VERSION": "37",
"POSTGRES_VERSION": "12.20",
"UBI_VERSION": "9.4-1214.1726694543"
}
10 changes: 7 additions & 3 deletions UBI/12/Dockerfile.multiarch.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL name="PostgreSQL Container Images" \
vendor="EnterpriseDB" \
url="https://www.enterprisedb.com/" \
version="12.20" \
release="35" \
release="36" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on RedHat Universal Base Images (UBI) 8."

Expand All @@ -21,6 +21,7 @@ RUN --mount=type=secret,id=cs_token \
pg_squeeze_pkg="pg_squeeze_12" ; \
pgvector="pgvector_12" ; \
pg_audit_pkg="pgaudit14_12" ; \
wal2json_pkg="wal2json_12" ; \
case $ARCH in \
amd64) \
yum -y install "${base_url}/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm" ; \
Expand All @@ -36,14 +37,16 @@ RUN --mount=type=secret,id=cs_token \
pg_squeeze_pkg="edb-pg12-pg-squeeze1" ; \
pgvector="edb-pg12-pgvector0" ; \
pg_audit_pkg="edb-pg12-pgaudit1" ; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ;; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ; \
wal2json_pkg="edb-pg12-wal2json2" ;; \
s390x) \
curl -u token:$(cat /run/secrets/cs_token) -1sLf https://downloads.enterprisedb.com/basic/edb/setup.rpm.sh | bash ; \
pg_failover_slots_pkg="edb-pg12-pg-failover-slots1" ; \
pg_squeeze_pkg="edb-pg12-pg-squeeze1" ; \
pgvector="edb-pg12-pgvector0" ; \
pg_audit_pkg="edb-pg12-pgaudit1" ; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ;; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ; \
wal2json_pkg="edb-pg12-wal2json2" ;; \
*) \
exit 1 ;; \
esac ; \
Expand All @@ -60,6 +63,7 @@ RUN --mount=type=secret,id=cs_token \
"$pg_squeeze_pkg" \
"$pg_failover_slots_pkg" \
"$pgvector" \
"$wal2json_pkg" \
; \
rm -fr /etc/yum.repos.d/enterprisedb-*.repo ; \
rm -fr /tmp/* ; \
Expand Down
10 changes: 7 additions & 3 deletions UBI/12/Dockerfile.multiarch.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL name="PostgreSQL Container Images" \
vendor="EnterpriseDB" \
url="https://www.enterprisedb.com/" \
version="12.20" \
release="36" \
release="37" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on RedHat Universal Base Images (UBI) 9."

Expand All @@ -21,6 +21,7 @@ RUN --mount=type=secret,id=cs_token \
pg_squeeze_pkg="pg_squeeze_12" ; \
pgvector="pgvector_12" ; \
pg_audit_pkg="pgaudit14_12" ; \
wal2json_pkg="wal2json_12" ; \
case $ARCH in \
amd64) \
yum -y install "${base_url}/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm" ; \
Expand All @@ -36,14 +37,16 @@ RUN --mount=type=secret,id=cs_token \
pg_squeeze_pkg="edb-pg12-pg-squeeze1" ; \
pgvector="edb-pg12-pgvector0" ; \
pg_audit_pkg="edb-pg12-pgaudit1" ; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ;; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ; \
wal2json_pkg="edb-pg12-wal2json2" ;; \
s390x) \
curl -u token:$(cat /run/secrets/cs_token) -1sLf https://downloads.enterprisedb.com/basic/edb/setup.rpm.sh | bash ; \
pg_failover_slots_pkg="edb-pg12-pg-failover-slots1" ; \
pg_squeeze_pkg="edb-pg12-pg-squeeze1" ; \
pgvector="edb-pg12-pgvector0" ; \
pg_audit_pkg="edb-pg12-pgaudit1" ; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ;; \
if [ "12" -gt "15" ]; then pg_audit_pkg="edb-pg12-pgaudit12"; fi ; \
wal2json_pkg="edb-pg12-wal2json2" ;; \
*) \
exit 1 ;; \
esac ; \
Expand All @@ -60,6 +63,7 @@ RUN --mount=type=secret,id=cs_token \
"$pg_squeeze_pkg" \
"$pg_failover_slots_pkg" \
"$pgvector" \
"$wal2json_pkg" \
; \
rm -fr /etc/yum.repos.d/enterprisedb-*.repo ; \
rm -fr /tmp/* ; \
Expand Down
3 changes: 2 additions & 1 deletion UBI/12/Dockerfile.multilang.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL name="PostgreSQL Container Images" \
vendor="EnterpriseDB" \
url="https://www.enterprisedb.com/" \
version="12.20" \
release="35" \
release="36" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on RedHat Universal Base Images (UBI) 8."

Expand Down Expand Up @@ -40,6 +40,7 @@ RUN set -xe ; \
pg_squeeze_12 \
"$pg_audit_pkg" \
pgvector_12 \
wal2json_12 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
3 changes: 2 additions & 1 deletion UBI/12/Dockerfile.multilang.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL name="PostgreSQL Container Images" \
vendor="EnterpriseDB" \
url="https://www.enterprisedb.com/" \
version="12.20" \
release="36" \
release="37" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on RedHat Universal Base Images (UBI) 9."

Expand Down Expand Up @@ -40,6 +40,7 @@ RUN set -xe ; \
pg_squeeze_12 \
"$pg_audit_pkg" \
pgvector_12 \
wal2json_12 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
3 changes: 2 additions & 1 deletion UBI/12/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL name="PostgreSQL Container Images" \
vendor="EnterpriseDB" \
url="https://www.enterprisedb.com/" \
version="12.20" \
release="35" \
release="36" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on RedHat Universal Base Images (UBI) 8."

Expand Down Expand Up @@ -39,6 +39,7 @@ RUN set -xe ; \
pg_squeeze_12 \
"$pg_audit_pkg" \
pgvector_12 \
wal2json_12 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
3 changes: 2 additions & 1 deletion UBI/12/Dockerfile.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL name="PostgreSQL Container Images" \
vendor="EnterpriseDB" \
url="https://www.enterprisedb.com/" \
version="12.20" \
release="36" \
release="37" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on RedHat Universal Base Images (UBI) 9."

Expand Down Expand Up @@ -39,6 +39,7 @@ RUN set -xe ; \
pg_squeeze_12 \
"$pg_audit_pkg" \
pgvector_12 \
wal2json_12 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
Loading

0 comments on commit 481809f

Please sign in to comment.