Skip to content
#

containerd

Here are 135 public repositories matching this topic...

talos
liubogithub
liubogithub commented Feb 9, 2022

clap now offers a neater derive API, which can help us save hundreds of LOC in nydusd, nydus-image, etc.

use clap::Parser;

/// Simple program to greet a person
#[derive(Parser, Debug)]
#[clap(author, version, about, long_about = None)]
struct Args {
    /// Name of the person to greet
    #[clap(short, long)]
    name: String,

    /// Number
vhive
ustiugov
ustiugov commented Jul 1, 2021

Currently, ctriface/ doesn't pick up environment variables from the knative manifests. Firecracker-containerd supports it at a the container creation time as a runtime argument to the corresponding API call.

Example:

	container, err := o.client.NewContainer(
		ctx,
		vmID,
		containerd.WithSnapshotter(o.snapshotter),
		containerd.WithNewSnapshot(vmID, *vm.Image),
		containerd.With

Agorakube is a Certified Kubernetes Distribution built on top of CNCF ecosystem that provides an enterprise grade solution following best practices to manage a conformant Kubernetes cluster for on-premise and public cloud providers.

  • Updated Dec 14, 2021
  • Jinja

Improve this page

Add a description, image, and links to the containerd topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the containerd topic, visit your repo's landing page and select "manage topics."

Learn more