From ad14725973ff3b5fe05f34e53650f4b34e65d06b Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 15 May 2021 13:49:50 -0700 Subject: hack: firecracker binary and CNI configuration Add a target to the Makefile to download a version of firecracker and extract it under the repository hack/firecracker. We will then use this binary for running the VM. Add a CNI configuration under hack/cni. This configuration will need to be copied to `/etc/cni/conf.d`. --- users/fcuny/exp/containerd-to-vm/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'users/fcuny/exp/containerd-to-vm/Makefile') diff --git a/users/fcuny/exp/containerd-to-vm/Makefile b/users/fcuny/exp/containerd-to-vm/Makefile index a071aeb..a7997d8 100644 --- a/users/fcuny/exp/containerd-to-vm/Makefile +++ b/users/fcuny/exp/containerd-to-vm/Makefile @@ -1,3 +1,9 @@ .PHONY: build build: go build -o c2vm cmd/c2vm/main.go + +.PHONY: firecracker-binary +firecracker-binary: + mkdir -p hack/firecracker + curl -L -o hack/firecracker/firecracker.tgz https://github.com/firecracker-microvm/firecracker/releases/download/v0.24.3/firecracker-v0.24.3-x86_64.tgz + tar xvzf hack/firecracker/firecracker.tgz -C hack/firecracker -- cgit v1.2.3