Skip to content

Commit 5d6a07f

Browse files
committed
chore!: Bump stackable-operator to 0.92.0
1 parent 1e964d7 commit 5d6a07f

File tree

6 files changed

+56
-34
lines changed

6 files changed

+56
-34
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ edition = "2021"
1010
repository = "https://github.com/stackabletech/listener-operator"
1111

1212
[workspace.dependencies]
13-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.91.0" }
14-
stackable-telemetry = { git = "https://github.com/stackabletech/operator-rs.git", features = ["clap"], tag = "stackable-telemetry-0.5.0" }
13+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = ["telemetry", "versioned"], tag = "stackable-operator-0.92.0" }
1514

1615
anyhow = "1.0"
1716
built = { version = "0.7", features = ["chrono", "git2"] }

rust/olm-deployer/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ publish = false
1010

1111
[dependencies]
1212
stackable-operator.workspace = true
13-
stackable-telemetry.workspace = true
1413

1514
anyhow.workspace = true
1615
clap.workspace = true

rust/olm-deployer/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ use stackable_operator::{
2929
core::GroupVersionKind,
3030
discovery::{ApiResource, Discovery, Scope},
3131
},
32+
telemetry::{Tracing, tracing::TelemetryOptions},
3233
utils::cluster_info::KubernetesClusterInfoOpts,
3334
};
34-
use stackable_telemetry::{Tracing, tracing::TelemetryOptions};
3535

3636
pub const APP_NAME: &str = "stkbl-listener-olm-deployer";
3737

rust/operator-binary/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ publish = false
1111
[dependencies]
1212
csi-grpc = { path = "../csi-grpc" }
1313
stackable-operator.workspace = true
14-
stackable-telemetry.workspace = true
1514

1615
clap.workspace = true
1716
const_format.workspace = true

rust/operator-binary/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ use futures::{FutureExt, TryStreamExt, pin_mut};
1212
use stackable_operator::{
1313
self, CustomResourceExt,
1414
commons::listener::{Listener, ListenerClass, PodListeners},
15+
telemetry::{Tracing, tracing::TelemetryOptions},
1516
utils::cluster_info::KubernetesClusterInfoOpts,
1617
};
17-
use stackable_telemetry::{Tracing, tracing::TelemetryOptions};
1818
use tokio::signal::unix::{SignalKind, signal};
1919
use tokio_stream::wrappers::UnixListenerStream;
2020
use tonic::transport::Server;

0 commit comments

Comments
 (0)