kubelet 0.7.0

A Kubernetes kubelet implementation in Rust
Documentation
//! Client for fetching container modules from OCI
use async_trait::async_trait;
use oci_distribution::client::ImageData;
use oci_distribution::manifest;
use oci_distribution::secrets::RegistryAuth;

use oci_distribution::Reference;

/// An image client capable of fetching images from a storage location
#[async_trait]
pub trait Client {
    /// Fetch the image data and, if available, image digest for the given image
    /// reference from a storage location.
    ///
    /// # Example
    /// ```rust
    /// use async_trait::async_trait;
    /// use kubelet::store::oci::Client;
    /// use oci_distribution::Reference;
    /// use oci_distribution::client::ImageData;
    /// use oci_distribution::secrets::RegistryAuth;
    ///
    /// struct InMemoryClient(std::collections::HashMap<Reference, ImageData>);
    ///
    /// #[async_trait]
    /// impl Client for InMemoryClient {
    ///     async fn pull(&mut self, image_ref: &Reference, _auth: &RegistryAuth) -> anyhow::Result<ImageData> {
    ///         let image_data = self
    ///             .0
    ///             .get(image_ref)
    ///             .ok_or(anyhow::anyhow!("Couldn't find image"))?;
    ///         Ok(image_data.clone())
    ///     }
    /// }
    /// ```
    async fn pull(
        &mut self,
        image_ref: &Reference,
        auth: &RegistryAuth,
    ) -> anyhow::Result<ImageData>;

    /// Fetch the digest for the given image reference from a storage location.
    ///
    /// The default implementation pulls the image data and digest, and returns
    /// the digest. This is inefficient for most real-world clients, and so should
    /// be overridden.
    async fn fetch_digest(
        &mut self,
        image_ref: &Reference,
        auth: &RegistryAuth,
    ) -> anyhow::Result<String> {
        let image_data = self.pull(image_ref, auth).await?;
        image_data
            .digest
            .ok_or_else(|| anyhow::anyhow!("image {} does not have a digest", image_ref))
    }
}

#[async_trait]
impl Client for oci_distribution::Client {
    async fn pull(&mut self, image: &Reference, auth: &RegistryAuth) -> anyhow::Result<ImageData> {
        self.pull(image, auth, vec![manifest::WASM_LAYER_MEDIA_TYPE])
            .await
    }

    async fn fetch_digest(
        &mut self,
        image: &Reference,
        auth: &RegistryAuth,
    ) -> anyhow::Result<String> {
        self.fetch_manifest_digest(image, auth).await
    }
}