Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Update to latest stackable images #586

Closed
wants to merge 2 commits into from
Closed
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 @@ -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