Update kubert to v0.19.0 (#11569)

This commit is contained in:
Oliver Gould 2023-11-03 15:03:46 -07:00 committed by GitHub
parent 409cc88f06
commit 256fc5ac2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 6 deletions

View File

@ -1200,9 +1200,9 @@ dependencies = [
[[package]] [[package]]
name = "kubert" name = "kubert"
version = "0.18.0" version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5578e67bd3dee1f18ea52b0f45f976a3829b565e54703f5d5e1bb0017c499b88" checksum = "357e2b50e5a455abe6199b26ee7d7137e3b72df7f821c0b801756335d13bc140"
dependencies = [ dependencies = [
"ahash", "ahash",
"backoff", "backoff",

View File

@ -45,9 +45,17 @@ default-features = false
features = ["admission", "derive"] features = ["admission", "derive"]
[dependencies.kubert] [dependencies.kubert]
version = "0.18" version = "0.19"
default-features = false default-features = false
features = ["clap", "index", "lease", "metrics", "runtime", "server", "rustls-tls"] features = [
"clap",
"index",
"lease",
"metrics",
"runtime",
"server",
"rustls-tls",
]
[dependencies.tokio] [dependencies.tokio]
version = "1" version = "1"

View File

@ -16,7 +16,7 @@ kube = { version = "0.85", default-features = false, features = [
"derive", "derive",
"runtime", "runtime",
] } ] }
kubert = { version = "0.18", default-features = false, features = ["index"] } kubert = { version = "0.19", default-features = false, features = ["index"] }
linkerd-policy-controller-core = { path = "../../core" } linkerd-policy-controller-core = { path = "../../core" }
linkerd-policy-controller-k8s-api = { path = "../api" } linkerd-policy-controller-k8s-api = { path = "../api" }
parking_lot = "0.12" parking_lot = "0.12"

View File

@ -11,7 +11,7 @@ anyhow = "1"
# Fix for https://github.com/chronotope/chrono/issues/602 # Fix for https://github.com/chronotope/chrono/issues/602
chrono = { version = "0.4.24", default-features = false, features = ["clock"] } chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
k8s-gateway-api = "0.13" k8s-gateway-api = "0.13"
kubert = { version = "0.18", default-features = false, features = [ kubert = { version = "0.19", default-features = false, features = [
"index", "index",
"lease", "lease",
] } ] }