Skip to content

Commit 988633e

Browse files
committed
Update to latest stackable images (#586)
# Description - Updated all product / tools images to the latest stackable image version **DO NOT MERGE BEFORE RELEASE IS DONE!** Co-authored-by: Malte Sander <[email protected]>
1 parent 93de6e6 commit 988633e

File tree

11 files changed

+19
-13
lines changed

11 files changed

+19
-13
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Updated stackable image versions ([#586]).
10+
11+
[#586]: https://github.com/stackabletech/zookeeper-operator/pull/586
12+
713
## [0.12.0] - 2022-11-07
814

915
### Added

docs/modules/ROOT/examples/example-cluster-tls-authentication.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: ZookeeperCluster
44
metadata:
55
name: simple-zk
66
spec:
7-
version: 3.8.0-stackable0.7.0
7+
version: 3.8.0-stackable0.8.0
88
config:
99
clientAuthentication:
1010
authenticationClass: zk-client-tls # <1>

docs/modules/ROOT/examples/example-cluster-tls-encryption.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: ZookeeperCluster
44
metadata:
55
name: simple-zk
66
spec:
7-
version: 3.8.0-stackable0.7.0
7+
version: 3.8.0-stackable0.8.0
88
config:
99
tls:
1010
secretClass: tls # <1>

docs/modules/ROOT/pages/config_properties.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ kind: ZookeeperCluster
88
metadata:
99
name: simple
1010
spec:
11-
version: 3.8.0-stackable0.7.1
11+
version: 3.8.0-stackable0.8.0
1212
servers:
1313
roleGroups:
1414
default:

docs/modules/ROOT/pages/usage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ kind: ZookeeperCluster
2222
metadata:
2323
name: simple-zk
2424
spec:
25-
version: 3.8.0-stackable0.7.1
25+
version: 3.8.0-stackable0.8.0
2626
servers:
2727
roleGroups:
2828
default:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ zkCli_ls() {
6060
# tag::zkcli-ls[]
6161
kubectl run my-pod \
6262
--stdin --tty --quiet --restart=Never \
63-
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.7.1 -- \
63+
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.8.0 -- \
6464
bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
6565
kubectl logs my-pod && \
6666
kubectl delete pods my-pod

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ zkCli_ls() {
6060
# tag::zkcli-ls[]
6161
kubectl run my-pod \
6262
--stdin --tty --quiet --restart=Never \
63-
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.7.1 -- \
63+
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.8.0 -- \
6464
bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
6565
kubectl logs my-pod && \
6666
kubectl delete pods my-pod

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: ZookeeperCluster
44
metadata:
55
name: simple-zk
66
spec:
7-
version: 3.8.0-stackable0.7.1
7+
version: 3.8.0-stackable0.8.0
88
servers:
99
roleGroups:
1010
default:

examples/simple-zookeeper-tls-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: ZookeeperCluster
44
metadata:
55
name: simple-zk
66
spec:
7-
version: 3.8.0-stackable0.7.1
7+
version: 3.8.0-stackable0.8.0
88
config:
99
tls:
1010
secretClass: tls

rust/operator-binary/src/zk_controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ fn build_server_rolegroup_statefulset(
587587
)?;
588588

589589
let container_prepare = cb_prepare
590-
.image("docker.stackable.tech/stackable/tools:0.2.0-stackable0.3.0")
590+
.image("docker.stackable.tech/stackable/tools:0.2.0-stackable0.4.0")
591591
.command(vec!["sh".to_string(), "-c".to_string()])
592592
.args(vec![create_init_container_command_args(zk)])
593593
.add_env_vars(env_vars.clone())

tests/test-definition.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
dimensions:
33
- name: zookeeper
44
values:
5-
- 3.5.8-stackable0.7.1
6-
- 3.6.3-stackable0.7.1
7-
- 3.7.0-stackable0.7.1
8-
- 3.8.0-stackable0.7.1
5+
- 3.5.8-stackable0.8.0
6+
- 3.6.3-stackable0.8.0
7+
- 3.7.0-stackable0.8.0
8+
- 3.8.0-stackable0.8.0
99
- name: use-client-tls
1010
values:
1111
- "true"

0 commit comments

Comments
 (0)