Skip to content

Commit

Permalink
Update to latest stackable images (#586)
Browse files Browse the repository at this point in the history
# Description

- Updated all product / tools images to the latest stackable image version


**DO NOT MERGE BEFORE RELEASE IS DONE!**



Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
  • Loading branch information
maltesander and maltesander committed Nov 14, 2022
1 parent 93de6e6 commit 988633e
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Changed

- Updated stackable image versions ([#586]).

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

## [0.12.0] - 2022-11-07

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: ZookeeperCluster
metadata:
name: simple-zk
spec:
version: 3.8.0-stackable0.7.0
version: 3.8.0-stackable0.8.0
config:
clientAuthentication:
authenticationClass: zk-client-tls # <1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: ZookeeperCluster
metadata:
name: simple-zk
spec:
version: 3.8.0-stackable0.7.0
version: 3.8.0-stackable0.8.0
config:
tls:
secretClass: tls # <1>
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/config_properties.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ kind: ZookeeperCluster
metadata:
name: simple
spec:
version: 3.8.0-stackable0.7.1
version: 3.8.0-stackable0.8.0
servers:
roleGroups:
default:
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kind: ZookeeperCluster
metadata:
name: simple-zk
spec:
version: 3.8.0-stackable0.7.1
version: 3.8.0-stackable0.8.0
servers:
roleGroups:
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ zkCli_ls() {
# tag::zkcli-ls[]
kubectl run my-pod \
--stdin --tty --quiet --restart=Never \
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.7.1 -- \
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.8.0 -- \
bin/zkCli.sh -server simple-zk-server-default: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 @@ -60,7 +60,7 @@ zkCli_ls() {
# tag::zkcli-ls[]
kubectl run my-pod \
--stdin --tty --quiet --restart=Never \
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.7.1 -- \
--image docker.stackable.tech/stackable/zookeeper:3.8.0-stackable0.8.0 -- \
bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
kubectl logs my-pod && \
kubectl delete pods my-pod
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/getting_started/examples/code/zookeeper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: ZookeeperCluster
metadata:
name: simple-zk
spec:
version: 3.8.0-stackable0.7.1
version: 3.8.0-stackable0.8.0
servers:
roleGroups:
default:
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-zookeeper-tls-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: ZookeeperCluster
metadata:
name: simple-zk
spec:
version: 3.8.0-stackable0.7.1
version: 3.8.0-stackable0.8.0
config:
tls:
secretClass: tls
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/zk_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ fn build_server_rolegroup_statefulset(
)?;

let container_prepare = cb_prepare
.image("docker.stackable.tech/stackable/tools:0.2.0-stackable0.3.0")
.image("docker.stackable.tech/stackable/tools:0.2.0-stackable0.4.0")
.command(vec!["sh".to_string(), "-c".to_string()])
.args(vec![create_init_container_command_args(zk)])
.add_env_vars(env_vars.clone())
Expand Down
8 changes: 4 additions & 4 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
dimensions:
- name: zookeeper
values:
- 3.5.8-stackable0.7.1
- 3.6.3-stackable0.7.1
- 3.7.0-stackable0.7.1
- 3.8.0-stackable0.7.1
- 3.5.8-stackable0.8.0
- 3.6.3-stackable0.8.0
- 3.7.0-stackable0.8.0
- 3.8.0-stackable0.8.0
- name: use-client-tls
values:
- "true"
Expand Down

0 comments on commit 988633e

Please sign in to comment.