Skip to content

Commit 089aa63

Browse files
Rebuild pgbouncer image with newer version (apache#42349)
Bump base image because alpine 3.14 is end-of-live
1 parent b678857 commit 089aa63

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

chart/dockerfiles/pgbouncer/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
ARG ALPINE_VERSION="3.14"
17+
ARG ALPINE_VERSION="3.19"
1818
FROM alpine:${ALPINE_VERSION} AS builder
1919
SHELL ["/bin/ash", "-e", "-x", "-c", "-o", "pipefail"]
2020

@@ -26,7 +26,7 @@ ARG PGBOUNCER_SHA256
2626
# Those are build deps only but still we want the latest versions of those
2727
# "Pin versions in apk add" https://github.com/hadolint/hadolint/wiki/DL3018
2828
# hadolint ignore=DL3018
29-
RUN apk --no-cache add make pkgconfig build-base libtool wget gcc g++ libevent-dev libressl-dev c-ares-dev ca-certificates
29+
RUN apk --no-cache add make pkgconfig build-base libtool wget gcc g++ libevent-dev openssl-dev c-ares-dev ca-certificates
3030
# We are not using Dash so we can safely ignore the "Dash warning"
3131
# "In dash, something is not supported." https://github.com/koalaman/shellcheck/wiki/SC2169
3232
# hadolint ignore=SC2169,SC3060

chart/dockerfiles/pgbouncer/build_and_push.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ readonly DOCKERHUB_USER
2222
DOCKERHUB_REPO=${DOCKERHUB_REPO:="airflow"}
2323
readonly DOCKERHUB_REPO
2424

25-
PGBOUNCER_VERSION="1.21.0"
25+
PGBOUNCER_VERSION="1.22.1"
2626
readonly PGBOUNCER_VERSION
2727

28-
PGBOUNCER_SHA256="7e1dd620c8d85a8490aff25061d5055d7aef9cf3e8bfe2d9e7719b8ee59114e2"
28+
PGBOUNCER_SHA256="2b018aa6ce7f592c9892bb9e0fd90262484eb73937fd2af929770a45373ba215"
2929
readonly PGBOUNCER_SHA256
3030

31-
AIRFLOW_PGBOUNCER_VERSION="2024.01.19"
31+
AIRFLOW_PGBOUNCER_VERSION="2024.09.19"
3232
readonly AIRFLOW_PGBOUNCER_VERSION
3333

3434
COMMIT_SHA=$(git rev-parse HEAD)

chart/values.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@
895895
"tag": {
896896
"description": "The PgBouncer image tag.",
897897
"type": "string",
898-
"default": "airflow-pgbouncer-2024.01.19-1.21.0"
898+
"default": "airflow-pgbouncer-2024.09.19-1.22.1"
899899
},
900900
"pullPolicy": {
901901
"description": "The PgBouncer image pull policy.",

chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ images:
115115
pullPolicy: IfNotPresent
116116
pgbouncer:
117117
repository: apache/airflow
118-
tag: airflow-pgbouncer-2024.01.19-1.21.0
118+
tag: airflow-pgbouncer-2024.09.19-1.22.1
119119
pullPolicy: IfNotPresent
120120
pgbouncerExporter:
121121
repository: apache/airflow

0 commit comments

Comments
 (0)