Skip to content

Commit 1bf501c

Browse files
committed
Use op-rs 0.96.0
1 parent c5c5a7e commit 1bf501c

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/stackabletech/superset-operator"
1111

1212
[workspace.dependencies]
1313
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" }
14-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = ["telemetry", "versioned"], tag = "stackable-operator-0.95.0" }
14+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = ["telemetry", "versioned"], tag = "stackable-operator-0.96.0" }
1515

1616
anyhow = "1.0"
1717
built = { version = "0.8", features = ["chrono", "git2"] }
@@ -29,6 +29,6 @@ strum = { version = "0.27", features = ["derive"] }
2929
tokio = { version = "1.40", features = ["full"] }
3030
tracing = "0.1"
3131

32-
[patch."https://github.com/stackabletech/operator-rs"]
33-
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "fix/probe-builder-clone" }
32+
# [patch."https://github.com/stackabletech/operator-rs"]
33+
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
3434
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }

rust/operator-binary/src/main.rs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use clap::Parser;
77
use futures::{StreamExt, pin_mut};
88
use stackable_operator::{
99
YamlSchema,
10-
cli::{Command, ProductOperatorRun},
10+
cli::{Command, CommonOptions, ProductOperatorRun},
1111
crd::authentication::core,
1212
k8s_openapi::api::{
1313
apps::v1::StatefulSet,
@@ -77,11 +77,14 @@ async fn main() -> anyhow::Result<()> {
7777
.print_yaml_schema(built_info::PKG_VERSION, SerializeOptions::default())?;
7878
}
7979
Command::Run(ProductOperatorRun {
80+
common:
81+
CommonOptions {
82+
telemetry,
83+
cluster_info,
84+
},
85+
operator_environment: _,
8086
product_config,
8187
watch_namespace,
82-
operator_environment: _,
83-
telemetry,
84-
cluster_info,
8588
}) => {
8689
// NOTE (@NickLarsenNZ): Before stackable-telemetry was used:
8790
// - The console log level was set by `SUPERSET_OPERATOR_LOG`, and is now `CONSOLE_LOG` (when using Tracing::pre_configured).

0 commit comments

Comments
 (0)