35个稳定版本 (12个主要版本)
13.1.0 | 2024年7月23日 |
---|---|
12.0.0 | 2023年9月20日 |
11.0.0 | 2023年9月19日 |
10.1.0 | 2023年8月29日 |
0.2.3 | 2020年2月12日 |
#152 in Rust模式
每月4,841次下载
在 4 crates 中使用
210KB
5.5K SLoC
Kubernetes Rust客户端
类似于Kubernetes Go客户端:https://github.com/kubernetes/client-go
客户端使用示例
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);
}
}
许可证
本项目采用Apache许可证。
贡献
除非您明确声明,否则您提交给Fluvio的任何有意贡献的内容,均应按Apache许可证授权,不附加任何额外条款或条件。
依赖项
~8–27MB
~387K SLoC