Skip to content
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: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ All notable changes to this project will be documented in this file.
### Added

- Helm: Allow Pod `priorityClassName` to be configured ([#974]).
- Add support for `3.9.4` ([#977]).

### Changed

- Deprecate support for `3.9.3` ([#977]).

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

## [25.7.0] - 2025-07-23

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ zkCli_ls() {
# tag::zkcli-ls[]
kubectl run my-pod \
--stdin --tty --quiet --restart=Never \
--image oci.stackable.tech/sdp/zookeeper:3.9.3-stackable0.0.0-dev -- \
--image oci.stackable.tech/sdp/zookeeper:3.9.4-stackable0.0.0-dev -- \
bin/zkCli.sh -server simple-zk-server:2282 ls / > /dev/null && \
kubectl logs my-pod && \
kubectl delete pods my-pod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ zkCli_ls() {
# tag::zkcli-ls[]
kubectl run my-pod \
--stdin --tty --quiet --restart=Never \
--image oci.stackable.tech/sdp/zookeeper:3.9.3-stackable{{ versions.zookeeper }} -- \
--image oci.stackable.tech/sdp/zookeeper:3.9.4-stackable{{ versions.zookeeper }} -- \
bin/zkCli.sh -server simple-zk-server:2282 ls / > /dev/null && \
kubectl logs my-pod && \
kubectl delete pods my-pod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-zk
spec:
image:
productVersion: 3.9.3
productVersion: 3.9.4
servers:
roleConfig:
listenerClass: cluster-internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-zk
spec:
image:
productVersion: 3.9.3
productVersion: 3.9.4
servers:
roleConfig:
listenerClass: cluster-internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-zk
spec:
image:
productVersion: 3.9.3
productVersion: 3.9.4
clusterConfig:
authentication:
- authenticationClass: zk-client-tls # <1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-zk
spec:
image:
productVersion: 3.9.3
productVersion: 3.9.4
clusterConfig:
tls:
serverSecretClass: tls # <1>
Expand Down
3 changes: 2 additions & 1 deletion docs/modules/zookeeper/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
// This is a separate file, since it is used by both the direct ZooKeeper documentation, and the overarching
// Stackable Platform documentation.

- 3.9.3 (LTS)
- 3.9.4 (LTS)
- 3.9.3 (deprecated)
2 changes: 1 addition & 1 deletion examples/simple-zookeeper-tls-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-zk
spec:
image:
productVersion: 3.9.3
productVersion: 3.9.4
clusterConfig:
authentication:
- authenticationClass: zk-client-tls
Expand Down
4 changes: 2 additions & 2 deletions rust/operator-binary/src/config/jvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
servers:
roleGroups:
default:
Expand Down Expand Up @@ -152,7 +152,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
servers:
config:
resources:
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/crd/affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ mod tests {
name: simple-zk
spec:
image:
productVersion: 3.9.3
productVersion: 3.9.4
clusterConfig:
authentication:
- authenticationClass: zk-client-tls
Expand Down
14 changes: 7 additions & 7 deletions rust/operator-binary/src/crd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
"#;
let zookeeper: v1alpha1::ZookeeperCluster =
serde_yaml::from_str(input).expect("illegal test input");
Expand All @@ -749,7 +749,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
clusterConfig:
tls:
serverSecretClass: simple-zookeeper-client-tls
Expand All @@ -773,7 +773,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
clusterConfig:
tls:
serverSecretClass: null
Expand All @@ -793,7 +793,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
clusterConfig:
tls:
quorumSecretClass: simple-zookeeper-quorum-tls
Expand All @@ -819,7 +819,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
"#;
let zookeeper: v1alpha1::ZookeeperCluster =
serde_yaml::from_str(input).expect("illegal test input");
Expand All @@ -840,7 +840,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
clusterConfig:
tls:
quorumSecretClass: simple-zookeeper-quorum-tls
Expand All @@ -863,7 +863,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
clusterConfig:
tls:
serverSecretClass: simple-zookeeper-server-tls
Expand Down
4 changes: 2 additions & 2 deletions rust/operator-binary/src/zk_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1225,7 +1225,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
servers:
roleGroups:
default:
Expand All @@ -1252,7 +1252,7 @@ mod tests {
name: simple-zookeeper
spec:
image:
productVersion: "3.9.3"
productVersion: "3.9.4"
servers:
configOverrides:
zoo.cfg:
Expand Down
3 changes: 2 additions & 1 deletion tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ dimensions:
- name: zookeeper
values:
- 3.9.3
- 3.9.4
# To use a custom image, add a comma and the full name after the product version
# - 3.9.3,oci.stackable.tech/sdp/zookeeper:3.9.3-stackable0.0.0-dev
- name: zookeeper-latest
values:
- 3.9.3
- 3.9.4
# To use a custom image, add a comma and the full name after the product version
# - 3.9.3,oci.stackable.tech/sdp/zookeeper:3.9.3-stackable0.0.0-dev
- name: use-server-tls
Expand Down
Loading