HTTP server example

Let’s build a container image for a WebAssembly HTTP service. The HTTP service application is developed in Rust using the WasmEdge networking socket API. Kubernetes could manage the wasm application lifecycle with CRI-O, Docker and Containerd.

Prerequisites

This is a Rust example, which require you to install Rust and WasmEdge before you can Compile and Run the http service.

Download example code

  1. mkdir http_server
  2. cd http_server
  3. wget -q https://raw.githubusercontent.com/second-state/wasmedge_wasi_socket/main/examples/http_server/Cargo.toml
  4. mkdir src
  5. cd src
  6. wget -q https://raw.githubusercontent.com/second-state/wasmedge_wasi_socket/main/examples/http_server/src/main.rs
  7. cd ../

Build the WASM bytecode

  1. rustup target add wasm32-wasi
  2. cargo build --target wasm32-wasi --release

The wasm bytecode application is now should be located in the ./target/wasm32-wasi/release/http_server.wasm You can now test run it with wasmedge and then publish it as a container image.

Apply executable permission on the Wasm bytecode

  1. chmod +x ./target/wasm32-wasi/release/http_server.wasm

Running the http_server application bytecode with wasmedge

When you run the bytecode with wasmedge and see the result as the following, you are ready to package the bytecode into the container.

  1. $ wasmedge ./target/wasm32-wasi/release/http_server.wasm
  2. new connection at 1234

You can test the server from another terminal window.

  1. $ curl -X POST http://127.0.0.1:1234 -d 'name=WasmEdge'
  2. echo: name=WasmEdge

Create Dockerfile

Create a file called Dockerfile in the target/wasm32-wasi/release/ folder with the following content:

  1. FROM scratch
  2. ADD http_server.wasm /
  3. CMD ["/http_server.wasm"]

Create container image with annotations

Please note that adding self-defined annotation is still a new feature in buildah.

The crun container runtime can start the above WebAssembly-based container image. But it requires the module.wasm.image/variant=compat annotation on the container image to indicate that it is a WebAssembly application without a guest OS. You can find the details in Official crun repo.

To add module.wasm.image/variant=compat annotation in the container image, you will need the latest buildah. Currently, Docker does not support this feature. Please follow the install instructions of buildah to build the latest buildah binary.

Build and install the latest buildah on Ubuntu

On Ubuntu zesty and xenial, use these commands to prepare for buildah.

  1. sudo apt-get -y install software-properties-common
  2. export OS="xUbuntu_20.04"
  3. sudo bash -c "echo \"deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/ /\" > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list"
  4. sudo bash -c "curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/Release.key | apt-key add -"
  5. sudo add-apt-repository -y ppa:alexlarsson/flatpak
  6. sudo apt-get -y -qq update
  7. sudo apt-get -y install bats git libapparmor-dev libdevmapper-dev libglib2.0-dev libgpgme-dev libseccomp-dev libselinux1-dev skopeo-containers go-md2man containers-common
  8. sudo apt-get -y install golang-1.16 make

Then, follow these steps to build and install buildah on Ubuntu.

  1. mkdir -p ~/buildah
  2. cd ~/buildah
  3. export GOPATH=`pwd`
  4. git clone https://github.com/containers/buildah ./src/github.com/containers/buildah
  5. cd ./src/github.com/containers/buildah
  6. PATH=/usr/lib/go-1.16/bin:$PATH make
  7. cp bin/buildah /usr/bin/buildah
  8. buildah --help

Create and publish a container image with buildah

In the target/wasm32-wasi/release/ folder, do the following.

  1. sudo buildah build --annotation "module.wasm.image/variant=compat" -t http_server .
  2. #
  3. # make sure docker is install and running
  4. # systemctl status docker
  5. # to make sure regular user can use docker
  6. # sudo usermod -aG docker $USER#
  7. # newgrp docker
  8. # You may need to use docker login to create the `~/.docker/config.json` for auth.
  9. #
  10. # docker login
  11. sudo buildah push --authfile ~/.docker/config.json http_server docker://docker.io/avengermojo/http_server:with-wasm-annotation

That’s it! Now you can try to run it in CRI-O or Kubernetes!