forked from repo-mirrors/cnpg-postgres-containers
feat: add v18 beta images (#243)
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com> Signed-off-by: Gabriele Bartolini <gabriele.bartolini@enterprisedb.com> Co-authored-by: Gabriele Bartolini <gabriele.bartolini@enterprisedb.com>
This commit is contained in:
6
Debian/18/bookworm/.versions.json
Normal file
6
Debian/18/bookworm/.versions.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"BARMAN_VERSION": "3.14.0",
|
||||||
|
"IMAGE_RELEASE_VERSION": "1",
|
||||||
|
"POSTGRES_IMAGE_LAST_UPDATED": "2025-07-01T14:09:06.900678Z",
|
||||||
|
"POSTGRES_IMAGE_VERSION": "18beta1-bookworm"
|
||||||
|
}
|
6
Debian/18/bullseye/.versions.json
Normal file
6
Debian/18/bullseye/.versions.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"BARMAN_VERSION": "3.14.0",
|
||||||
|
"IMAGE_RELEASE_VERSION": "1",
|
||||||
|
"POSTGRES_IMAGE_LAST_UPDATED": "2025-07-01T08:11:13.699314Z",
|
||||||
|
"POSTGRES_IMAGE_VERSION": "18beta1-bullseye"
|
||||||
|
}
|
@@ -28,13 +28,13 @@ LABEL org.opencontainers.image.description="This Docker image contains PostgreSQ
|
|||||||
COPY requirements.txt /
|
COPY requirements.txt /
|
||||||
|
|
||||||
# Install additional extensions
|
# Install additional extensions
|
||||||
RUN set -xe; \
|
# RUN set -xe; \
|
||||||
apt-get update; \
|
# apt-get update; \
|
||||||
apt-get install -y --no-install-recommends \
|
# apt-get install -y --no-install-recommends \
|
||||||
"postgresql-${PG_MAJOR}-pgvector" \
|
# "postgresql-${PG_MAJOR}-pgvector" \
|
||||||
; \
|
# ; \
|
||||||
rm -fr /tmp/* ; \
|
# rm -fr /tmp/* ; \
|
||||||
rm -rf /var/lib/apt/lists/*;
|
# rm -rf /var/lib/apt/lists/*;
|
||||||
|
|
||||||
# Install barman-cloud
|
# Install barman-cloud
|
||||||
RUN set -xe; \
|
RUN set -xe; \
|
||||||
|
12
README.md
12
README.md
@@ -11,11 +11,13 @@
|
|||||||
|
|
||||||
# CNPG PostgreSQL Container Images
|
# CNPG PostgreSQL Container Images
|
||||||
|
|
||||||
This repository provides maintenance scripts for generating immutable
|
This repository provides maintenance scripts for generating **immutable
|
||||||
application containers for all supported PostgreSQL versions (13 to 17).
|
application containers** for all supported PostgreSQL versions (13 to 17),
|
||||||
These containers are designed to serve as operands for the
|
as well as for PostgreSQL 18 beta.
|
||||||
[CloudNativePG (CNPG) operator](https://cloudnative-pg.io) in Kubernetes
|
|
||||||
environments.
|
These containers are designed to serve as **operands** for the
|
||||||
|
[CloudNativePG (CNPG) operator](https://cloudnative-pg.io)
|
||||||
|
within Kubernetes environments.
|
||||||
|
|
||||||
## Key Features
|
## Key Features
|
||||||
|
|
||||||
|
@@ -97,6 +97,7 @@ generate_postgres() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Update requirements.txt
|
# Update requirements.txt
|
||||||
|
mkdir -p "$versionDir"
|
||||||
echo "$requirements" > "$versionDir/requirements.txt"
|
echo "$requirements" > "$versionDir/requirements.txt"
|
||||||
|
|
||||||
# Output the image being updated
|
# Output the image being updated
|
||||||
|
Reference in New Issue
Block a user