3 releases

1.0.0 Sep 24, 2024
0.1.4 Oct 29, 2024
0.1.2 Oct 26, 2024
0.1.1 Oct 9, 2024

#2 in #cri

Download history 148/week @ 2024-09-23 23/week @ 2024-09-30 154/week @ 2024-10-07 29/week @ 2024-10-14 97/week @ 2024-10-21 156/week @ 2024-10-28 27/week @ 2024-11-04

314 downloads per month

Apache-2.0

26KB

cri-api

本项目基于k8s-cri。 在此基础上,只支持v1规范,并完善examples,以方便用户开发使用。

快速开发

添加依赖

cargo add cri-api
cargo add tokio
cargo add tower
cargo add tonic

书写测试用例

use std::convert::TryFrom;
use tokio::main;

use cri_api::v1::runtime_service_client::RuntimeServiceClient;
use tokio::net::UnixStream;
use tonic::transport::{Channel, Endpoint, Uri};
use tower::service_fn;

#[tokio::main]
async fn main() {
    let path = "/run/containerd/containerd.sock";
    let channel = Endpoint::try_from("http://[::]")
        .unwrap()
        .connect_with_connector(service_fn(move |_: Uri| UnixStream::connect(path)))
        .await
        .expect("Could not create client.");

    let mut client = RuntimeServiceClient::new(channel);
}

研制计划

  • 0.1.0:支持v1和v1alpha2规范,推送到rust仓库。
  • 0.1.1:删除对v1alpha2规范支持。
  • 0.2.0:添加示例代码。

Dependencies

~4–13MB
~129K SLoC