-
-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into mvp-client-ext
- Loading branch information
Showing
25 changed files
with
248 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
cluster-name: "test-cluster-1" | ||
args: >- | ||
--agents 1 | ||
--image docker.io/rancher/k3s:v1.23.4-k3s1 | ||
--image docker.io/rancher/k3s:v1.24.4-k3s1 | ||
--k3s-arg "--no-deploy=traefik,servicelb,metrics-server@server:*" | ||
- name: Run cargo-tarpaulin | ||
uses: actions-rs/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kube-client" | ||
version = "0.87.2" | ||
version = "0.88.1" | ||
description = "Kubernetes client" | ||
authors = [ | ||
"clux <[email protected]>", | ||
|
@@ -12,7 +12,7 @@ repository = "https://github.com/kube-rs/kube" | |
readme = "../README.md" | ||
keywords = ["kubernetes", "client",] | ||
categories = ["web-programming::http-client", "configuration", "network-programming", "api-bindings"] | ||
rust-version = "1.70.0" | ||
rust-version = "1.72.0" | ||
edition = "2021" | ||
|
||
[features] | ||
|
@@ -56,8 +56,8 @@ rustls = { version = "0.21.4", features = ["dangerous_configuration"], optional | |
rustls-pemfile = { version = "1.0.0", optional = true } | ||
bytes = { version = "1.1.0", optional = true } | ||
tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.87.2" } | ||
jsonpath-rust = { version = "0.3.4", optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.88.1" } | ||
jsonpath-rust = { version = "0.4.0", optional = true } | ||
tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] } | ||
hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] } | ||
hyper-rustls = { version = "0.24.0", optional = true } | ||
|
@@ -75,7 +75,7 @@ hyper-openssl = { version = "0.9.2", optional = true } | |
form_urlencoded = { version = "1.2.0", optional = true } | ||
|
||
[dependencies.k8s-openapi] | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
default-features = false | ||
features = [] | ||
|
||
|
@@ -88,6 +88,6 @@ tokio-test = "0.4.0" | |
tower-test = "0.4.0" | ||
|
||
[dev-dependencies.k8s-openapi] | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
default-features = false | ||
features = ["latest"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "kube-core" | ||
description = "Kube shared types, traits and client-less behavior" | ||
version = "0.87.2" | ||
version = "0.88.1" | ||
authors = [ | ||
"clux <[email protected]>", | ||
"kazk <[email protected]>", | ||
] | ||
edition = "2021" | ||
rust-version = "1.70.0" | ||
rust-version = "1.72.0" | ||
license = "Apache-2.0" | ||
keywords = ["kubernetes", "apimachinery"] | ||
categories = ["api-bindings", "encoding", "parser-implementations"] | ||
|
@@ -36,12 +36,12 @@ chrono = { version = "0.4.19", default-features = false, features = ["clock"] } | |
schemars = { version = "0.8.6", optional = true } | ||
|
||
[dependencies.k8s-openapi] | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
default-features = false | ||
features = [] | ||
|
||
[dev-dependencies.k8s-openapi] | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
default-features = false | ||
features = ["latest"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "kube-derive" | ||
description = "Custom derives for the kube kubernetes crates" | ||
version = "0.87.2" | ||
version = "0.88.1" | ||
authors = [ | ||
"clux <[email protected]>", | ||
"kazk <[email protected]>", | ||
] | ||
edition = "2021" | ||
rust-version = "1.70.0" | ||
rust-version = "1.72.0" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/kube-rs/kube" | ||
readme = "../README.md" | ||
|
@@ -29,7 +29,7 @@ proc-macro = true | |
serde = { version = "1.0.130", features = ["derive"] } | ||
serde_yaml = "0.9.19" | ||
kube = { path = "../kube", version = "<1.0.0, >=0.61.0", features = ["derive", "client"] } | ||
k8s-openapi = { version = "0.20.0", default-features = false, features = ["latest"] } | ||
k8s-openapi = { version = "0.21.0", default-features = false, features = ["latest"] } | ||
schemars = { version = "0.8.6", features = ["chrono"] } | ||
chrono = { version = "0.4.19", default-features = false } | ||
trybuild = "1.0.48" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.