kubelet 0.7.0

A Kubernetes kubelet implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A client/server implementation using UNIX sockets for gRPC, meant for use with tonic. Socket
//! support is not built in to tonic and support for UNIX sockets on Windows requires its own crate
//! (as it isn't in standard due to backwards compatibility guarantees). This is our own package for
//! now, but if it is useful we could publish it as its own crate

// Right now we only use the server for testing purposes. If we choose to publish this as its own
// crate, we should remove this attribute
#[cfg_attr(target_family = "unix", path = "unix/mod.rs")]
#[cfg_attr(target_family = "windows", path = "windows/mod.rs")]
#[cfg(test)]
pub mod server;

pub mod client;