Skip to content

Commit a6b76f5

Browse files
authored
chore: Bump zookeeper version for 25.11.0 (#977)
* chore: Bump zookeeper version for 25.11.0 * add changelog entry
1 parent 1d36843 commit a6b76f5

File tree

14 files changed

+29
-21
lines changed

14 files changed

+29
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,14 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Helm: Allow Pod `priorityClassName` to be configured ([#974]).
10+
- Add support for `3.9.4` ([#977]).
11+
12+
### Changed
13+
14+
- Deprecate support for `3.9.3` ([#977]).
1015

1116
[#974]: https://github.com/stackabletech/zookeeper-operator/pull/974
17+
[#977]: https://github.com/stackabletech/zookeeper-operator/pull/977
1218

1319
## [25.7.0] - 2025-07-23
1420

docs/modules/zookeeper/examples/getting_started/code/getting_started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ zkCli_ls() {
6363
# tag::zkcli-ls[]
6464
kubectl run my-pod \
6565
--stdin --tty --quiet --restart=Never \
66-
--image oci.stackable.tech/sdp/zookeeper:3.9.3-stackable0.0.0-dev -- \
66+
--image oci.stackable.tech/sdp/zookeeper:3.9.4-stackable0.0.0-dev -- \
6767
bin/zkCli.sh -server simple-zk-server:2282 ls / > /dev/null && \
6868
kubectl logs my-pod && \
6969
kubectl delete pods my-pod

docs/modules/zookeeper/examples/getting_started/code/getting_started.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ zkCli_ls() {
6363
# tag::zkcli-ls[]
6464
kubectl run my-pod \
6565
--stdin --tty --quiet --restart=Never \
66-
--image oci.stackable.tech/sdp/zookeeper:3.9.3-stackable{{ versions.zookeeper }} -- \
66+
--image oci.stackable.tech/sdp/zookeeper:3.9.4-stackable{{ versions.zookeeper }} -- \
6767
bin/zkCli.sh -server simple-zk-server:2282 ls / > /dev/null && \
6868
kubectl logs my-pod && \
6969
kubectl delete pods my-pod

docs/modules/zookeeper/examples/getting_started/code/zookeeper.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-zk
66
spec:
77
image:
8-
productVersion: 3.9.3
8+
productVersion: 3.9.4
99
servers:
1010
roleConfig:
1111
listenerClass: cluster-internal

docs/modules/zookeeper/examples/getting_started/code/zookeeper.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-zk
66
spec:
77
image:
8-
productVersion: 3.9.3
8+
productVersion: 3.9.4
99
servers:
1010
roleConfig:
1111
listenerClass: cluster-internal

docs/modules/zookeeper/examples/usage_guide/example-cluster-tls-authentication.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-zk
66
spec:
77
image:
8-
productVersion: 3.9.3
8+
productVersion: 3.9.4
99
clusterConfig:
1010
authentication:
1111
- authenticationClass: zk-client-tls # <1>

docs/modules/zookeeper/examples/usage_guide/example-cluster-tls-encryption.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-zk
66
spec:
77
image:
8-
productVersion: 3.9.3
8+
productVersion: 3.9.4
99
clusterConfig:
1010
tls:
1111
serverSecretClass: tls # <1>

docs/modules/zookeeper/partials/supported-versions.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
// This is a separate file, since it is used by both the direct ZooKeeper documentation, and the overarching
33
// Stackable Platform documentation.
44

5-
- 3.9.3 (LTS)
5+
- 3.9.4 (LTS)
6+
- 3.9.3 (deprecated)

examples/simple-zookeeper-tls-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-zk
66
spec:
77
image:
8-
productVersion: 3.9.3
8+
productVersion: 3.9.4
99
clusterConfig:
1010
authentication:
1111
- authenticationClass: zk-client-tls

rust/operator-binary/src/config/jvm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ mod tests {
117117
name: simple-zookeeper
118118
spec:
119119
image:
120-
productVersion: "3.9.3"
120+
productVersion: "3.9.4"
121121
servers:
122122
roleGroups:
123123
default:
@@ -152,7 +152,7 @@ mod tests {
152152
name: simple-zookeeper
153153
spec:
154154
image:
155-
productVersion: "3.9.3"
155+
productVersion: "3.9.4"
156156
servers:
157157
config:
158158
resources:

0 commit comments

Comments
 (0)