Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update image name to 17-devel #22

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:

# set up environment variables to be used across all the jobs
env:
GOLANG_VERSION: "1.20.x"
GOLANG_VERSION: "1.21.x"
KIND_VERSION: "v0.20.0"
REGISTRY: "ghcr.io/cloudnative-pg/postgresql-trunk"
POSTGRES_VERSION: "16-devel"
POSTGRES_VERSION: "17-devel"

defaults:
run:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-22.04
env:
TEST_DEPTH: 4
K8S_VERSION: "v1.27.3"
K8S_VERSION: "v1.28.0"
ID: "local"
POSTGRES_KIND: "PostgreSQL"

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM debian:bullseye-slim
# Do not split the description, otherwise we will see a blank space in the labels
LABEL name="PostgreSQL Container Images" \
vendor="The CloudNativePG Contributors" \
version="16-devel" \
version="17-devel" \
summary="PostgreSQL Container images." \
description="This Docker image contains a snapshot image of PostgreSQL compiled from Master and Barman Cloud based on Debian bullseye-slim."

Expand Down Expand Up @@ -89,7 +89,7 @@ ENV LANG en_US.utf8

RUN mkdir /docker-entrypoint-initdb.d

ENV PG_MAJOR 16
ENV PG_MAJOR 17
ENV PATH $PATH:/usr/lib/postgresql/$PG_MAJOR/bin

# Build PostgreSQL
Expand Down
Loading