35 stable releases (12 major)

new 13.1.0 Jul 23, 2024
12.0.0 Sep 20, 2023
11.0.0 Sep 19, 2023
10.1.0 Aug 29, 2023
0.2.3 Feb 12, 2020

#154 in Rust patterns

Download history 1816/week @ 2024-04-03 1046/week @ 2024-04-10 2219/week @ 2024-04-17 1586/week @ 2024-04-24 1560/week @ 2024-05-01 1312/week @ 2024-05-08 634/week @ 2024-05-15 1627/week @ 2024-05-22 1903/week @ 2024-05-29 934/week @ 2024-06-05 1466/week @ 2024-06-12 1373/week @ 2024-06-19 845/week @ 2024-06-26 521/week @ 2024-07-03 911/week @ 2024-07-10 1518/week @ 2024-07-17

3,956 downloads per month
Used in 4 crates

Apache-2.0

210KB
5.5K 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–24MB
~376K SLoC