37 stable releases (14 major)

15.0.1 Oct 24, 2025
14.0.0 Jun 3, 2025
13.1.0 Jul 23, 2024
12.0.0 Sep 20, 2023
0.2.3 Feb 12, 2020

#317 in Rust patterns

Download history 492/week @ 2025-08-12 174/week @ 2025-08-19 126/week @ 2025-08-26 199/week @ 2025-09-02 44/week @ 2025-09-09 3/week @ 2025-09-16 48/week @ 2025-09-23 112/week @ 2025-09-30 121/week @ 2025-10-07 106/week @ 2025-10-14 396/week @ 2025-10-21 96/week @ 2025-10-28 371/week @ 2025-11-04 350/week @ 2025-11-11 151/week @ 2025-11-18 32/week @ 2025-11-25

989 downloads per month
Used in 4 crates

Apache-2.0

220KB
6K SLoC

Kubernetes Rust Client

This is similar to Kubernetes Go Client: https://github.com/kubernetes/client-go

Example of using the client:

use k8_client::K8Client;
use k8_obj_core::pod::{PodSpec,PodStatus};

async fn main() {

    let client = K8Client::default().expect("cluster not initialized");

    let pod_items = client.retrieve_items::<PodSpec,_>("default").await.expect("pods should exist");

    for pod in pod_items.items {
        println!("pod: {:#?}",pod);
    }
}

License

This project is licensed under the Apache license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Fluvio by you, shall be licensed as Apache, without any additional terms or conditions.

Dependencies

~8–27MB
~414K SLoC