Skip to content

Commit

Permalink
pin some k8s-openapi versions to latest + update refs
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Aug 6, 2023
1 parent e4ad780 commit 3372eb9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/controllers/application.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
1 change: 0 additions & 1 deletion docs/integrations.md

This file was deleted.

1 change: 1 addition & 0 deletions docs/kubernetes-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/) | [[email protected]](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/) | [[email protected]](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/) | [[email protected]](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/) | [[email protected]](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md#v0150-2022-05-22) |
Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ nav:
- getting-started.md
#- quick-tutorial.md
- changelog.md
#- integrations.md
- security.md
- release-process.md
- rust-version.md
Expand Down

0 comments on commit 3372eb9

Please sign in to comment.