Skip to content

Commit fb7a63b

Browse files
committed
Upgrade zookeeper to v3.8.4
1 parent 391a8c1 commit fb7a63b

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build-push-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
context: docker/zookeeper-image
5353
platforms: linux/amd64,linux/arm64
54-
tags: adobe/zookeeper:3.8.3-apache-${{ steps.vars.outputs.tag }}
54+
tags: adobe/zookeeper:3.8.4-apache-${{ steps.vars.outputs.tag }}
5555
push: ${{ startsWith(github.ref, 'refs/tags/zk') }}
5656
labels: |
5757
org.opencontainers.image.source=${{ github.event.repository.html_url }}
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
context: docker
6666
platforms: linux/amd64,linux/arm64
67-
tags: adobe/zookeeper:3.8.3-${{ steps.vars.outputs.tag }}
67+
tags: adobe/zookeeper:3.8.4-${{ steps.vars.outputs.tag }}
6868
push: ${{ startsWith(github.ref, 'refs/tags/') && !startsWith(github.ref, 'refs/tags/zk') }}
6969
labels: |
7070
org.opencontainers.image.source=${{ github.event.repository.html_url }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The project is currently alpha. While no breaking API changes are currently plan
4646

4747
### Overview
4848

49-
This operator runs a Zookeeper 3.8.3 cluster, and uses Zookeeper dynamic reconfiguration to handle node membership.
49+
This operator runs a Zookeeper 3.8.4 cluster, and uses Zookeeper dynamic reconfiguration to handle node membership.
5050

5151
The operator itself is built with the [Operator framework](https://github.com/operator-framework/operator-sdk).
5252

charts/zookeeper/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ maxUnavailableReplicas:
33

44
image:
55
repository: adobe/zookeeper
6-
tag: 3.8.3-0.2.15-adobe-20231117
6+
tag: 3.8.3-0.2.15-adobe-20250914
77
pullPolicy: IfNotPresent
88

99
triggerRollingRestart: false

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ COPY zu /zu
1515
WORKDIR /zu
1616
RUN ./gradlew shadowJar
1717

18-
# use forked base zookeeper 3.8.3 docker image
18+
# use forked base zookeeper 3.8.4 docker image
1919
# that runs on openjdk-21
20-
FROM adobe/zookeeper:3.8.3-apache-zk-20240314
20+
FROM adobe/zookeeper:3.8.4-apache-zk-20250914
2121
COPY bin /usr/local/bin
2222
RUN chmod +x /usr/local/bin/*
2323
COPY --from=0 /zu/build/libs/zu.jar /opt/libs/

docker/zookeeper-image/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ RUN set -eux; \
115115
# Verify that gosu binary works
116116
gosu nobody true
117117

118-
ARG SHORT_DISTRO_NAME=zookeeper-3.8.3
119-
ARG DISTRO_NAME=apache-zookeeper-3.8.3-bin
118+
ARG SHORT_DISTRO_NAME=zookeeper-3.8.4
119+
ARG DISTRO_NAME=apache-zookeeper-3.8.4-bin
120120

121121
# Download Apache Zookeeper, verify its PGP signature, untar and clean up
122122
RUN set -eux; \

docker/zu/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repositories {
1212

1313
dependencies {
1414
implementation(kotlin("stdlib"))
15-
implementation("org.apache.zookeeper:zookeeper:3.8.3")
15+
implementation("org.apache.zookeeper:zookeeper:3.8.4")
1616
}
1717

1818
tasks.withType<ShadowJar>() {

0 commit comments

Comments
 (0)