From 208d262f654f3898f5a64a2dc9b4793c2afe91c6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 03:55:11 +0000 Subject: [PATCH] Update kubernetes crates --- crates/cli/Cargo.toml | 2 +- crates/k8s/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index a7266eb..aaef1b7 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -16,4 +16,4 @@ ipnet = "2.9.0" tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] } tracing = "0.1.40" # Set the exact k8s API version to use -k8s-openapi = { version = "0.23.0", features = ["v1_27"] } +k8s-openapi = { version = "0.24.0", features = ["v1_27"] } diff --git a/crates/k8s/Cargo.toml b/crates/k8s/Cargo.toml index 1c33ae8..3714af4 100644 --- a/crates/k8s/Cargo.toml +++ b/crates/k8s/Cargo.toml @@ -13,8 +13,8 @@ jsonschema = "0.27.0" # do not specify a specific k8s api version in the lib crate, # this should be done in the bin crate # https://kube.rs/upgrading/#renovate -k8s-openapi = { version = "0.23.0", features = ["schemars"] } -kube = { version = "0.97.0", default-features = false, features = [ +k8s-openapi = { version = "0.24.0", features = ["schemars"] } +kube = { version = "0.98.0", default-features = false, features = [ "client", "rustls-tls", "runtime", @@ -31,4 +31,4 @@ tracing = { version = "0.1.40" } [dev-dependencies] # we do enable a specific version for dev, so that tests can run -k8s-openapi = { version = "0.23.0", features = ["schemars", "v1_27"] } +k8s-openapi = { version = "0.24.0", features = ["schemars", "v1_27"] }