Skip to content

Commit 7680015

Browse files
committed
merge main and refer to op-rs 0.114.0
2 parents f162257 + ef84356 commit 7680015

10 files changed

Lines changed: 41 additions & 39 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ All notable changes to this project will be documented in this file.
88

99
- Internal operator refactoring: introduce a build() step in the reconciler that
1010
assembles all relevant Kubernetes resources before anything is applied ([#985]).
11+
- Bump stackable-operator to 0.114.0 ([#994]).
1112

1213
[#985]: https://github.com/stackabletech/kafka-operator/pull/985
14+
[#994]: https://github.com/stackabletech/kafka-operator/pull/994
1315

1416
## [26.7.0] - 2026-07-21
1517

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2024"
1010
repository = "https://github.com/stackabletech/kafka-operator"
1111

1212
[workspace.dependencies]
13-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.113.3", features = ["crds", "webhook"] }
13+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.114.0", features = ["crds", "webhook"] }
1414

1515
anyhow = "1.0.103"
1616
built = { version = "0.8", features = ["chrono", "git2"] }
@@ -30,4 +30,4 @@ tracing = "0.1"
3030

3131
[patch."https://github.com/stackabletech/operator-rs.git"]
3232
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
33-
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
33+
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }

crate-hashes.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/operator-binary/src/controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ impl Resource for ValidatedCluster {
438438
}
439439
}
440440

441-
/// The validated, merged per-role-group product config.
441+
/// The validated, merged per-role-group config.
442442
#[derive(Clone, Debug, PartialEq)]
443443
pub struct ValidatedKafkaConfig {
444444
pub config: AnyConfig,

rust/operator-binary/src/controller/build/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ pub fn build(cluster: &ValidatedCluster) -> Result<KubernetesResources, Error> {
156156
#[cfg(test)]
157157
mod tests {
158158
use std::collections::BTreeMap;
159+
159160
use stackable_operator::kube::Resource;
160161

161162
use super::build;

rust/operator-binary/src/controller/build/properties/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ pub enum ConfigFileName {
3737
Log4j2,
3838
}
3939

40-
/// The product config-file name for a role group, derived from its role
41-
/// (`broker.properties` for brokers, `controller.properties` for controllers).
40+
/// The config file name for a role group, derived from its role (`broker.properties` for brokers,
41+
/// `controller.properties` for controllers).
4242
pub fn config_file_name(config: &AnyConfig) -> ConfigFileName {
4343
match config {
4444
AnyConfig::Broker(_) => ConfigFileName::BrokerProperties,

rust/operator-binary/src/crd/role/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ pub enum AnyConfigOverrides {
167167
}
168168

169169
impl AnyConfigOverrides {
170-
/// The merged product config-file overrides (`broker.properties` for brokers,
171-
/// `controller.properties` for controllers).
170+
/// The merged config file overrides (`broker.properties` for brokers, `controller.properties`
171+
/// for controllers).
172172
pub fn config_file_overrides(&self) -> &KeyValueConfigOverrides {
173173
match self {
174174
AnyConfigOverrides::Broker(o) => &o.broker_properties,

rust/operator-binary/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ async fn main() -> anyhow::Result<()> {
7575
watch_namespace,
7676
maintenance,
7777
common,
78-
..
7978
},
8079
..
8180
}) => {

0 commit comments

Comments
 (0)