using vmsh in the vhive lambda environment
Vhive makes available web-endpoints by managing lambda-functions deployed with firecracker-containerd micro-VMs. Lambda-pirate listens for errors in those lambda-functions and then spawns a debug container with shell access into it. The debug container is attached by vmsh which supports multiple hypervisors and guest linux kernel versions. Furthermore vmsh is agnostic towards the micro-VMs userspace like networking and its running services (specifically ssh) which gives developers freedom to change their hypervisor and boot images in a race to the fastest and most lightweight micro-VM.
Supported OS: NixOS
Status: experimental
To reproduce the usecase as presented in the VMSH paper, follow this guide
$ git clone https://github.com/pogobanane/lambda-pirate.git
$ cd lambda-pirateWe use nix with nix flakes to build modules.
To list all defined components use:
$ nix flake showPackages can be built into result/ with nix build .#$pkgname i.e.:
$ nix build .#vhiveEnter the development shell to load and make available all command line dependencies and variables:
$ nix developIf you are working on evaluation machines provided by us, please skip this step as it is already completed.
In NixOS one can include the nixos modules in their configuration to deploy a single-node k3s, firecracker-containerd, containerd, knative and vhive.
To do so include the following configuration in your flake.nix
{description="NixOS configuration";inputs.lambda-pirate.url="github:pogobanane/lambda-pirate";outputs={nixpkgs,lambda-pirate}: {bernie=nixpkgs.lib.nixosSystem{system="x86_64-linux";# replace with your archmodules=[./configuration.nix# or whatever configuration you use...lambda-pirate.nixosModules.knativelambda-pirate.nixosModules.vhive({config, ... }: {# for lambda pirateservices.vhive.dockerRegistryIp=1.1.1.1;# the ipv4 of this machine})];};};}Checkout the nixos modules in nix/modules for further details. Finally apply the changes and start the services
$ nixos-rebuild switchAfter adding the nixos modules, the kubernetes manifests have to be deployed:
$ just reset
$ sudo -E kubectl get pod --all-namespacesNAMESPACE NAME READY STATUS RESTARTS AGEkube-system metrics-server-86cbb8457f-89hls 1/1 Running 0 5m49skube-system local-path-provisioner-5ff76fc89d-k6qlg 1/1 Running 0 5m49skube-system coredns-7448499f4d-v67ps 1/1 Running 0 5m49smetallb-system controller-8687cdc65-jk4bl 1/1 Running 0 5m45smetallb-system speaker-q5vbb 1/1 Running 0 5m45skube-system calico-kube-controllers-8654f74bf8-rnw98 1/1 Running 0 5m44sdefault minio-deployment-877b8596f-b8j29 1/1 Running 0 5m45sistio-system istiod-796c467-grbsl 1/1 Running 0 5m39sistio-system cluster-local-gateway-949654c8d-wn6fw 1/1 Running 0 3m41sistio-system istio-ingressgateway-59c64f5f9c-hgk2z 1/1 Running 0 3m41sknative-serving istio-webhook-56748b47-p9wbb 1/1 Running 0 3m9sknative-eventing eventing-controller-55b6f79c99-6bfdg 1/1 Running 0 3m10sknative-eventing eventing-webhook-67877858b4-llt8g 1/1 Running 0 3m10sknative-eventing imc-controller-5f4bdf86cf-z54tl 1/1 Running 0 3m7sknative-eventing mt-broker-ingress-546d6868c9-p2qn5 1/1 Running 0 3m7sknative-eventing mt-broker-filter-685f7f46d8-bcf54 1/1 Running 0 3m7sknative-serving networking-istio-5db557d5c4-zn2vw 1/1 Running 0 3m9sknative-eventing imc-dispatcher-6c664678f9-9nzgt 1/1 Running 0 3m7sknative-eventing mt-broker-controller-cffcc449c-v594x 1/1 Running 0 3m7sknative-serving default-domain-zcr5v 0/1 Error 0 3m8sknative-serving default-domain-9wztl 0/1 Error 0 91sknative-serving webhook-89656b4c5-2m9h7 1/1 Running 0 3m12sknative-serving autoscaler-569cfb8b96-8mlvn 1/1 Running 0 3m12sknative-serving controller-74f8f6ccb8-b5q7k 1/1 Running 0 3m12sknative-serving activator-6d7f96d7fc-6jlk8 1/1 Running 0 3m12sknative-serving default-domain-t75n7 0/1 Completed 0 81skube-system canal-59rld 1/2 Running 0 5m44sdefault hellooopsie-0-00001-deployment-94c4d9c74-2q4zf 2/2 Running 0 19sThe vhive deployer has now started a hellooopsie lambda which produces an error
every 15 seconds. Start lambda-pirate (just lambda-pirate) and wait until an
error is detected and vmsh is attached to the micro VM.
To use your locally checked out lambda-pirate, replace inputs.lambda-pirate.url with a string/path to it.
To use your own local vhive build, check the commented paths in:
- justfile
- nix/modules/vhive.nix
To clean deploy after you made your changes (deletes k3s/containerd completely everything!)
$ nixos-rebuild switch
$ just reset