Skip to content

Commit

Permalink
bump kube 86 (#60)
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux authored Sep 8, 2023
1 parent 116bd99 commit bb70569
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 50 deletions.
85 changes: 40 additions & 45 deletions Cargo.lock

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

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ telemetry = ["tonic", "opentelemetry-otlp"]
actix-web = "4.3.1"
futures = "0.3.28"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
k8s-openapi = { version = "0.19.0", features = ["v1_26"], default-features = false }
k8s-openapi = { version = "0.20.0", features = ["latest"] }
schemars = { version = "0.8.12", features = ["chrono"] }
serde = { version = "1.0.185", features = ["derive"] }
serde_json = "1.0.105"
Expand All @@ -52,9 +52,8 @@ hyper = "0.14.27"
tower-test = "0.4.0"

[dependencies.kube]
features = ["runtime", "client", "derive", "rustls-tls"]
version = "0.85.0"
default-features = false
features = ["runtime", "client", "derive" ]
version = "0.86.0"

# testing new releases - ignore
#git = "https://github.com/kube-rs/kube.git"
Expand Down
2 changes: 1 addition & 1 deletion src/telemetry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub async fn init() {
let telemetry = tracing_opentelemetry::layer().with_tracer(init_tracer().await);
let logger = tracing_subscriber::fmt::layer().compact();
let env_filter = EnvFilter::try_from_default_env()
.or_else(|_| EnvFilter::try_new("info"))
.or(EnvFilter::try_new("info"))
.unwrap();

// Decide on layers
Expand Down

0 comments on commit bb70569

Please sign in to comment.