From 3662b55dbb0adabc56aba5cec8bb825b3cc45afe Mon Sep 17 00:00:00 2001 From: clux Date: Thu, 20 Jul 2023 22:19:26 +0100 Subject: [PATCH] add some more links and talks to the guides.md Signed-off-by: clux --- docs/guides.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/guides.md b/docs/guides.md index 18012b2..15e2131 100644 --- a/docs/guides.md +++ b/docs/guides.md @@ -1,4 +1,18 @@ # Guides and Tutorials -List of third party guides and tutorials for using the `kube-rs`: -- [Writing a Kubernetes Operator](https://metalbear.co/blog/writing-a-kubernetes-operator) +List of third party guides and tutorials for using the `kube-rs` that holds up to scrutiny. + +| Title | Year | Use | +| ----- | ---- | --- | +| [Writing a Kubernetes Operator](https://metalbear.co/blog/writing-a-kubernetes-operator) | 2023 | Operator with [extension api-server](https://kubernetes.io/docs/tasks/extend-kubernetes/setup-extension-api-server/) | +| [Oxidizing the Kubernetes operator](https://www.pavel.cool/rust/rust-kubernetes-operators/) | 2021 | Controller guide with finalizers, state machines +| [A Rust controller for Kubernetes](https://blog.frankel.ch/start-rust/6/) | 2021 | Introductory; project setup + api use | + +## Presentations + +| Title | Source | Content | +| ----- | ------ | ------- | +| [Rust operators for Kubernetes](https://www.youtube.com/watch?v=65pyIeLtd5Y) | PlatformCon 2023 | Rust benefits + kubebuilder comparisons | +| [Lightning Talk: Talking to Kubernetes with Rust](https://www.youtube.com/watch?v=Kp6GQjZixPE) | KubeCon EU 2023 | Introductory; api usage | +| [Why the future of the cloud will be built on Rust](https://www.youtube.com/watch?v=BWL4889RKhU) | Cloud Native Rust Day 2021 | Cloud History + Linkerd + Rust Ecosystem Overview | +| [The Hidden Generics in Kubernetes' API](https://www.youtube.com/watch?v=JmwnRcc2m2A) | KubeCon Virtual 2020 | Early stage kube-rs presentation on apimachinery + client-go translation |