firecracker-netns/docs
RouxAntoine 64657bbe1b
doc: schema for business and technical explanation
2024-01-12 23:02:56 +01:00
..
README.md doc: complete docs with manual note 2024-01-04 16:05:40 +01:00
business-schema.png doc: schema for business and technical explanation 2024-01-12 23:02:56 +01:00
firecracker-schema.png doc: schema for business and technical explanation 2024-01-12 23:02:56 +01:00

README.md

documentations

local :

linter required

$ brew install golangci-lint

firecracker on archlinux

pacman -S firecracker

build

make build

get rootfs and necessary stuff

ARCH="$(uname -m)"

# Download a linux kernel binary
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/${ARCH}/vmlinux-5.10.204

# Download a rootfs
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/${ARCH}/ubuntu-22.04.ext4

# Download the ssh key for the rootfs
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/${ARCH}/ubuntu-22.04.id_rsa

# Set user read permission on the ssh key
chmod 400 ./ubuntu-22.04.id_rsa

cf Official firecracker getting started