diff --git a/Cargo.lock b/Cargo.lock index 78be5a67..f9aa76cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2109,8 +2109,8 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.30.1" -source = "git+https://github.com/stackabletech/operator-rs.git?tag=0.30.1#34cc76200b6432f7b143ca1350e665ddb169df88" +version = "0.30.2" +source = "git+https://github.com/stackabletech/operator-rs.git?tag=0.30.2#133db3918fb3af191a4203106a5056d77cc9579f" dependencies = [ "chrono", "clap", @@ -2143,8 +2143,8 @@ dependencies = [ [[package]] name = "stackable-operator-derive" -version = "0.30.1" -source = "git+https://github.com/stackabletech/operator-rs.git?tag=0.30.1#34cc76200b6432f7b143ca1350e665ddb169df88" +version = "0.30.2" +source = "git+https://github.com/stackabletech/operator-rs.git?tag=0.30.2#133db3918fb3af191a4203106a5056d77cc9579f" dependencies = [ "darling", "proc-macro2", diff --git a/examples/simple-zookeeper-tls-cluster.yaml b/examples/simple-zookeeper-tls-cluster.yaml index 16fbd99a..4105a688 100644 --- a/examples/simple-zookeeper-tls-cluster.yaml +++ b/examples/simple-zookeeper-tls-cluster.yaml @@ -6,7 +6,7 @@ metadata: spec: image: productVersion: 3.8.0 - stackableVersion: 0.8.0 + stackableVersion: 0.9.0 config: tls: secretClass: tls @@ -14,9 +14,6 @@ spec: authenticationClass: zk-client-tls quorumTlsSecretClass: tls servers: - config: - logging: - enableVectorAgent: false roleGroups: default: replicas: 3 diff --git a/rust/crd/Cargo.toml b/rust/crd/Cargo.toml index 43f7286e..8b962b99 100644 --- a/rust/crd/Cargo.toml +++ b/rust/crd/Cargo.toml @@ -12,7 +12,7 @@ publish = false serde = "1.0.138" serde_json = "1.0.82" snafu = "0.7.1" -stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.1" } +stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.2" } strum = { version = "0.24.1", features = ["derive"] } [dev-dependencies] diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index 6842bdb3..429a49c3 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -24,10 +24,10 @@ tokio-executor = "0.1.10" tokio-zookeeper = "0.1.3" tracing = "0.1.35" pin-project = "1.0.11" -stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.1" } +stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.2" } stackable-zookeeper-crd = { path = "../crd" } [build-dependencies] built = { version = "0.5.1", features = ["chrono", "git2"] } -stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.1" } +stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.2" } stackable-zookeeper-crd = { path = "../crd" }