diff --git a/CHANGELOG.md b/CHANGELOG.md index 13083f88..2552dc3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/modules/ROOT/examples/example-cluster-tls-authentication.yaml b/docs/modules/ROOT/examples/example-cluster-tls-authentication.yaml index 98953948..2d8501b5 100644 --- a/docs/modules/ROOT/examples/example-cluster-tls-authentication.yaml +++ b/docs/modules/ROOT/examples/example-cluster-tls-authentication.yaml @@ -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> diff --git a/docs/modules/ROOT/examples/example-cluster-tls-encryption.yaml b/docs/modules/ROOT/examples/example-cluster-tls-encryption.yaml index d7eeb02d..8297c715 100644 --- a/docs/modules/ROOT/examples/example-cluster-tls-encryption.yaml +++ b/docs/modules/ROOT/examples/example-cluster-tls-encryption.yaml @@ -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> diff --git a/docs/modules/ROOT/pages/config_properties.adoc b/docs/modules/ROOT/pages/config_properties.adoc index 303ea7d1..86e26477 100644 --- a/docs/modules/ROOT/pages/config_properties.adoc +++ b/docs/modules/ROOT/pages/config_properties.adoc @@ -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: diff --git a/docs/modules/ROOT/pages/usage.adoc b/docs/modules/ROOT/pages/usage.adoc index ba12713d..8e212c31 100644 --- a/docs/modules/ROOT/pages/usage.adoc +++ b/docs/modules/ROOT/pages/usage.adoc @@ -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: diff --git a/docs/modules/getting_started/examples/code/getting_started.sh b/docs/modules/getting_started/examples/code/getting_started.sh index 6b171779..ea470cec 100755 --- a/docs/modules/getting_started/examples/code/getting_started.sh +++ b/docs/modules/getting_started/examples/code/getting_started.sh @@ -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 diff --git a/docs/modules/getting_started/examples/code/getting_started.sh.j2 b/docs/modules/getting_started/examples/code/getting_started.sh.j2 index 1e7402d8..4efeb684 100755 --- a/docs/modules/getting_started/examples/code/getting_started.sh.j2 +++ b/docs/modules/getting_started/examples/code/getting_started.sh.j2 @@ -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 diff --git a/docs/modules/getting_started/examples/code/zookeeper.yaml b/docs/modules/getting_started/examples/code/zookeeper.yaml index ba0be48c..a047331b 100644 --- a/docs/modules/getting_started/examples/code/zookeeper.yaml +++ b/docs/modules/getting_started/examples/code/zookeeper.yaml @@ -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: diff --git a/examples/simple-zookeeper-tls-cluster.yaml b/examples/simple-zookeeper-tls-cluster.yaml index 914647f7..c5810164 100644 --- a/examples/simple-zookeeper-tls-cluster.yaml +++ b/examples/simple-zookeeper-tls-cluster.yaml @@ -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 diff --git a/rust/operator-binary/src/zk_controller.rs b/rust/operator-binary/src/zk_controller.rs index cc2221b8..a39979bd 100644 --- a/rust/operator-binary/src/zk_controller.rs +++ b/rust/operator-binary/src/zk_controller.rs @@ -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()) diff --git a/tests/test-definition.yaml b/tests/test-definition.yaml index bcb89f3a..1176f237 100644 --- a/tests/test-definition.yaml +++ b/tests/test-definition.yaml @@ -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"