Skip to content
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ All notable changes to this project will be documented in this file.

### Changed

- Fixed the RoleGroup `selector`. It was not used before. ([#530])
- Updated stackable image versions ([#513]).
- operator-rs: 0.26.0 -> 0.27.1 ([#519]).
- operator-rs: 0.26.0 -> 0.30.1 ([#519], [#530]).
- Don't run init container as root and avoid chmod and chowning ([#524]).
- [BREAKING] Use Product image selection instead of version. `spec.version` has been replaced by `spec.image` ([#482]).
- [BREAKING]: Removed tools image for init and get-svc container and replaced with Kafka product image. This means the latest stackable version has to be used in the product image selection ([#527])

[#530]: https://github.com/stackabletech/kafka-operator/pull/530
[#482]: https://github.com/stackabletech/kafka-operator/pull/482
[#513]: https://github.com/stackabletech/kafka-operator/pull/513
[#519]: https://github.com/stackabletech/kafka-operator/pull/519
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/crd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "0.9.0-nightly"
publish = false

[dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.27.1" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.1" }

semver = "1.0.14"
serde = { version = "1.0.147", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions rust/operator-binary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ publish = false
[dependencies]
stackable-kafka-crd = { path = "../crd" }
stackable-kafka-operator = { path = "../operator" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.27.1" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.1" }

clap = "4.0.26"
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.37"

[build-dependencies]
built = { version = "0.5.1", features = ["chrono", "git2"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.27.1" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.1" }
stackable-kafka-crd = { path = "../crd" }

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion rust/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false

[dependencies]
stackable-kafka-crd = { path = "../crd" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.27.1" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.1" }

futures = "0.3.25"
serde = { version = "1.0.147", features = ["derive"] }
Expand Down
1 change: 1 addition & 0 deletions rust/operator/src/kafka_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,7 @@ fn build_broker_rolegroup_statefulset(
.add_init_container(container_get_svc)
.add_container(cb_kafka.build())
.add_container(container_kcat_prober)
.node_selector_opt(rolegroup.selector.clone())
.add_volume(Volume {
name: "config".to_string(),
config_map: Some(ConfigMapVolumeSource {
Expand Down