Add badges
Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
This commit is contained in:
parent
1fc9ce0151
commit
af24c1421c
13
README.md
13
README.md
|
|
@ -1,17 +1,18 @@
|
|||
# Rust extensions for containerd
|
||||
|
||||
[](https://github.com/mxpv/shim-rs/actions/workflows/ci.yml)
|
||||
[](https://github.com/containerd/rust-extensions/blob/main/LICENSE)
|
||||
|
||||
A collection of Rust crates to extend containerd.
|
||||
|
||||
This repository contains the following crates:
|
||||
|
||||
| Name | Description |
|
||||
| --- | --- |
|
||||
| [containerd-shim-client](crates/shim-client) | TTRPC bindings to shim interfaces |
|
||||
| [containerd-shim-logging](crates/logging) | Shim logger plugins |
|
||||
| [containerd-shim](crates/shim) | Runtime v2 shim wrapper |
|
||||
| [containerd-client](crates/client) | GRPC bindings to containerd APIs |
|
||||
| Name | Description | Links |
|
||||
| --- | --- |--------------------------------------------------------------------------------------------------------------------------|
|
||||
| [containerd-shim-client](crates/shim-client) | TTRPC bindings to shim interfaces | [](https://crates.io/crates/containerd-shim-client) |
|
||||
| [containerd-shim-logging](crates/logging) | Shim logger plugins | [](https://crates.io/crates/containerd-shim-logging) |
|
||||
| [containerd-shim](crates/shim) | Runtime v2 shim wrapper | [](https://crates.io/crates/containerd-shim) |
|
||||
| [containerd-client](crates/client) | GRPC bindings to containerd APIs | [](https://crates.io/crates/containerd-client) |
|
||||
|
||||
## How to build
|
||||
The build process as easy as:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
# GRPC bindings to containerd APIs
|
||||
# containerd GRPC client
|
||||
|
||||
[](https://crates.io/crates/containerd-client)
|
||||
[](https://docs.rs/containerd-client/latest/containerd_client/)
|
||||
[](https://github.com/containerd/rust-extensions/blob/main/LICENSE)
|
||||
[](https://github.com/mxpv/shim-rs/actions/workflows/ci.yml)
|
||||
|
||||
This crate implements a GRPC client to query containerd APIs.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
# logging
|
||||
# Shim logging binaries for containerd
|
||||
|
||||
[](https://crates.io/crates/containerd-shim-logging)
|
||||
[](https://docs.rs/containerd-shim-logging/latest/containerd_shim_logging/)
|
||||
[](https://github.com/containerd/rust-extensions/blob/main/LICENSE)
|
||||
[](https://github.com/mxpv/shim-rs/actions/workflows/ci.yml)
|
||||
|
||||
Shim v2 runtime supports pluggable logging binaries via stdio URIs.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
# Shim protos
|
||||
# Shim protos and client for containerd
|
||||
|
||||
[](https://crates.io/crates/containerd-shim-client)
|
||||
[](https://docs.rs/containerd-shim-client/latest/containerd-shim-client/)
|
||||
[](https://github.com/containerd/rust-extensions/blob/main/LICENSE)
|
||||
[](https://github.com/mxpv/shim-rs/actions/workflows/ci.yml)
|
||||
|
||||
TTRPC bindings for containerd's shim events and interfaces.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
# containerd shim
|
||||
# Shim extension for containerd
|
||||
|
||||
[](https://crates.io/crates/containerd-shim)
|
||||
[](https://docs.rs/containerd-shim/latest/containerd-shim/)
|
||||
[](https://github.com/containerd/rust-extensions/blob/main/LICENSE)
|
||||
[](https://github.com/mxpv/shim-rs/actions/workflows/ci.yml)
|
||||
|
||||
Rust crate to ease runtime v2 shim implementation.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue