kubelet 0.7.0

A Kubernetes kubelet implementation in Rust
Documentation
1
2
3
4
5
6
//! `oci` implements different storage methods for fetching modules from an OCI registry.
mod client;
mod file;

pub use client::Client;
pub use file::FileStore;