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 8, 2024
1 parent 907c5e8 commit 1f63ce0
Show file tree
Hide file tree
Showing 61 changed files with 171 additions and 106 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": "29",
"IMAGE_RELEASE_VERSION": "30",
"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": "30",
"IMAGE_RELEASE_VERSION": "31",
"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="29" \
release="30" \
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="30" \
release="31" \
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="29" \
release="30" \
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="30" \
release="31" \
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="29" \
release="30" \
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="30" \
release="31" \
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
7 changes: 3 additions & 4 deletions UBI/12/root/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ idna==3.10 \
--hash=sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9 \
--hash=sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3
# via requests
isodate==0.6.1 \
--hash=sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96 \
--hash=sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9
isodate==0.7.0 \
--hash=sha256:bc2c92e5b9526930bebb884fe5366ef8c4f437228b836a87a49af82d859fdb16 \
--hash=sha256:c6332cf456314b85cc3b6ea2c45a6fa417cb1fddb361f6d2ed8f4f69e843c6d1
# via azure-storage-blob
jmespath==1.0.1 \
--hash=sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980 \
Expand Down Expand Up @@ -482,7 +482,6 @@ six==1.16.0 \
--hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254
# via
# azure-core
# isodate
# python-dateutil
typing-extensions==4.12.2 \
--hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \
Expand Down
2 changes: 1 addition & 1 deletion UBI/13/.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": "29",
"IMAGE_RELEASE_VERSION": "30",
"POSTGRES_VERSION": "13.16",
"UBI_VERSION": "8.10-1088"
}
2 changes: 1 addition & 1 deletion UBI/13/.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": "30",
"IMAGE_RELEASE_VERSION": "31",
"POSTGRES_VERSION": "13.16",
"UBI_VERSION": "9.4-1214.1726694543"
}
10 changes: 7 additions & 3 deletions UBI/13/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="13.16" \
release="29" \
release="30" \
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_13" ; \
pgvector="pgvector_13" ; \
pg_audit_pkg="pgaudit15_13" ; \
wal2json_pkg="wal2json_13" ; \
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-pg13-pg-squeeze1" ; \
pgvector="edb-pg13-pgvector0" ; \
pg_audit_pkg="edb-pg13-pgaudit1" ; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ;; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ; \
wal2json_pkg="edb-pg13-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-pg13-pg-failover-slots1" ; \
pg_squeeze_pkg="edb-pg13-pg-squeeze1" ; \
pgvector="edb-pg13-pgvector0" ; \
pg_audit_pkg="edb-pg13-pgaudit1" ; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ;; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ; \
wal2json_pkg="edb-pg13-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/13/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="13.16" \
release="30" \
release="31" \
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_13" ; \
pgvector="pgvector_13" ; \
pg_audit_pkg="pgaudit15_13" ; \
wal2json_pkg="wal2json_13" ; \
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-pg13-pg-squeeze1" ; \
pgvector="edb-pg13-pgvector0" ; \
pg_audit_pkg="edb-pg13-pgaudit1" ; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ;; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ; \
wal2json_pkg="edb-pg13-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-pg13-pg-failover-slots1" ; \
pg_squeeze_pkg="edb-pg13-pg-squeeze1" ; \
pgvector="edb-pg13-pgvector0" ; \
pg_audit_pkg="edb-pg13-pgaudit1" ; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ;; \
if [ "13" -gt "15" ]; then pg_audit_pkg="edb-pg13-pgaudit13"; fi ; \
wal2json_pkg="edb-pg13-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/13/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="13.16" \
release="29" \
release="30" \
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_13 \
"$pg_audit_pkg" \
pgvector_13 \
wal2json_13 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
3 changes: 2 additions & 1 deletion UBI/13/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="13.16" \
release="30" \
release="31" \
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_13 \
"$pg_audit_pkg" \
pgvector_13 \
wal2json_13 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
3 changes: 2 additions & 1 deletion UBI/13/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="13.16" \
release="29" \
release="30" \
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_13 \
"$pg_audit_pkg" \
pgvector_13 \
wal2json_13 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
3 changes: 2 additions & 1 deletion UBI/13/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="13.16" \
release="30" \
release="31" \
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_13 \
"$pg_audit_pkg" \
pgvector_13 \
wal2json_13 \
; \
rm -fr /tmp/* ; \
yum -y clean all --enablerepo='*'
Expand Down
7 changes: 3 additions & 4 deletions UBI/13/root/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ idna==3.10 \
--hash=sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9 \
--hash=sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3
# via requests
isodate==0.6.1 \
--hash=sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96 \
--hash=sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9
isodate==0.7.0 \
--hash=sha256:bc2c92e5b9526930bebb884fe5366ef8c4f437228b836a87a49af82d859fdb16 \
--hash=sha256:c6332cf456314b85cc3b6ea2c45a6fa417cb1fddb361f6d2ed8f4f69e843c6d1
# via azure-storage-blob
jmespath==1.0.1 \
--hash=sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980 \
Expand Down Expand Up @@ -482,7 +482,6 @@ six==1.16.0 \
--hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254
# via
# azure-core
# isodate
# python-dateutil
typing-extensions==4.12.2 \
--hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \
Expand Down
2 changes: 1 addition & 1 deletion UBI/14/.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": "29",
"IMAGE_RELEASE_VERSION": "30",
"POSTGRES_VERSION": "14.13",
"UBI_VERSION": "8.10-1088"
}
Loading

0 comments on commit 1f63ce0

Please sign in to comment.