From 3372eb9bf56f37423c788df07396abeba7847733 Mon Sep 17 00:00:00 2001 From: clux Date: Sun, 6 Aug 2023 11:44:00 +0100 Subject: [PATCH] pin some k8s-openapi versions to latest + update refs Signed-off-by: clux --- docs/controllers/application.md | 4 ++-- docs/integrations.md | 1 - docs/kubernetes-version.md | 1 + mkdocs.yml | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 docs/integrations.md diff --git a/docs/controllers/application.md b/docs/controllers/application.md index cfd0d11..3bb1406 100644 --- a/docs/controllers/application.md +++ b/docs/controllers/application.md @@ -21,7 +21,7 @@ add then install `kube`, `k8s-openapi`, `thiserror`, `futures`, and `tokio`: ```sh cargo add kube --features=runtime,client,derive -cargo add k8s-openapi --features=v1_26 +cargo add k8s-openapi --features=latest --default-features=false cargo add thiserror cargo add tokio --features=macros,rt-multi-thread cargo add futures @@ -32,7 +32,7 @@ This should give you a `[dependencies]` part in your `Cargo.toml` looking like: ```toml kube = { version = "LATESTKUBE", features = ["runtime", "client", "derive"] } -k8s-openapi = { version = "LATESTK8SOPENAPI", features = ["v1_26"]} +k8s-openapi = { version = "LATESTK8SOPENAPI", features = ["latest"]} tokio = { version = "1", features = ["macros", "rt-multi-thread"] } futures = "0.3" thiserror = "LATESTTHISERROR" diff --git a/docs/integrations.md b/docs/integrations.md deleted file mode 100644 index e20ec32..0000000 --- a/docs/integrations.md +++ /dev/null @@ -1 +0,0 @@ -# Integrations diff --git a/docs/kubernetes-version.md b/docs/kubernetes-version.md index cec5ba2..9c64988 100644 --- a/docs/kubernetes-version.md +++ b/docs/kubernetes-version.md @@ -4,6 +4,7 @@ Our Kubernetes version compatibility is similar to the strategy employed by [cli | kube version | MK8SV | Latest | Generated Source | | -------------- | ------- | ------- | ----------------- | +| `0.85.0` | `1.22` | [`1.27`](https://kubernetes.io/blog/2023/04/11/kubernetes-v1-27-release/) | [k8s-openapi@0.19.0](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md#v0190-2023-08-05) | | `0.78.0` | `1.21` | [`1.26`](https://kubernetes.io/blog/2022/12/09/kubernetes-v1-26-release/) | [k8s-openapi@0.17.0](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md#v0170-2023-01-04) | | `0.75.0` | `1.20` | [`1.25`](https://kubernetes.io/blog/2022/08/23/kubernetes-v1-25-release/) | [k8s-openapi@0.16.0](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md#v0160-2022-09-15) | | `0.73.0` | `1.19` | [`1.24`](https://kubernetes.io/blog/2022/05/03/kubernetes-1-24-release-announcement/) | [k8s-openapi@0.15.0](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md#v0150-2022-05-22) | diff --git a/mkdocs.yml b/mkdocs.yml index 0ef5695..4ce7dcd 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -49,7 +49,6 @@ nav: - getting-started.md #- quick-tutorial.md - changelog.md - #- integrations.md - security.md - release-process.md - rust-version.md