Kubernetes + containerd

快速开始

GitHub 仓库 包含在 Kubernetes + containerd 上运行我们的示例应用程序的脚本和 Github Actions。

在本节的其余部分,我们将详细解释这些步骤。我们将假设你已经 安装并配置了 containerd,以便与 WasmEdge 容器镜像一起工作。

安装和启动 Kubernetes

从终端窗口运行以下命令,为本地开发设置了 Kubernetes。

  1. # 安装 go
  2. $ wget https://golang.org/dl/go1.17.1.linux-amd64.tar.gz
  3. $ sudo rm -rf /usr/local/go
  4. $ sudo tar -C /usr/local -xzf go1.17.1.linux-amd64.tar.gz
  5. $ source /home/${USER}/.profile
  6. # 克隆 k8s 源码
  7. $ git clone https://github.com/kubernetes/kubernetes.git
  8. $ cd kubernetes
  9. $ git checkout v1.22.2
  10. # 在 k8s 中用 hack 脚本安装 etcd
  11. $ sudo CGROUP_DRIVER=systemd CONTAINER_RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT='unix:///var/run/crio/crio.sock' ./hack/install-etcd.sh
  12. $ export PATH="/home/${USER}/kubernetes/third_party/etcd:${PATH}"
  13. $ sudo cp third_party/etcd/etcd* /usr/local/bin/
  14. # 运行上述命令后,你可以找到以下文件:/usr/local/bin/etcd /usr/local/bin/etcdctl /usr/local/bin/etcdutl
  15. # 用 containerd 构建和运行 k8s
  16. $ sudo apt-get install -y build-essential
  17. $ sudo CGROUP_DRIVER=systemd CONTAINER_RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT='unix:///var/run/crio/crio.sock' ./hack/local-up-cluster.sh
  18. ... ...
  19. Local Kubernetes cluster is running. Press Ctrl-C to shut it down.

不要关闭你的终端窗口。Kubernetes 正在运行!

在 Kubernetes 中运行 WebAssembly 容器镜像

最后,我们可以在 Kubernetes 中将 WebAssembly 程序作为容器运行在 pod 中。 在本节中,我们将从另一个终端窗口开始,使用集群。

  1. export KUBERNETES_PROVIDER=local
  2. sudo cluster/kubectl.sh config set-cluster local --server=https://localhost:6443 --certificate-authority=/var/run/kubernetes/server-ca.crt
  3. sudo cluster/kubectl.sh config set-credentials myself --client-key=/var/run/kubernetes/client-admin.key --client-certificate=/var/run/kubernetes/client-admin.crt
  4. sudo cluster/kubectl.sh config set-context local --cluster=local --user=myself
  5. sudo cluster/kubectl.sh config use-context local
  6. sudo cluster/kubectl.sh

让我们检查一下状态,确保集群正在运行。

  1. $ sudo cluster/kubectl.sh cluster-info
  2. # 期望输出
  3. Cluster "local" set.
  4. User "myself" set.
  5. Context "local" created.
  6. Switched to context "local".
  7. Kubernetes control plane is running at https://localhost:6443
  8. CoreDNS is running at https://localhost:6443/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy
  9. To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.

一个简单的 WebAssembly 应用程序

另一篇文章解释了如何编译、打包和发布一个简单的 WebAssembly WASI 程序作为容器镜像到 Docker hub。 在 Kubernetes 集群中运行 Docker Hub 中基于 WebAssembly 的镜像,方法如下。

  1. sudo cluster/kubectl.sh run -it --rm --restart=Never wasi-demo --image=hydai/wasm-wasi-example:with-wasm-annotation --annotations="module.wasm.image/variant=compat" --overrides='{"kind":"Pod", "apiVersion":"v1", "spec": {"hostNetwork": true}}' /wasi_example_main.wasm 50000000

容器化应用程序的输出被打印到控制台。

  1. Random number: 401583443
  2. Random bytes: [192, 226, 162, 92, 129, 17, 186, 164, 239, 84, 98, 255, 209, 79, 51, 227, 103, 83, 253, 31, 78, 239, 33, 218, 68, 208, 91, 56, 37, 200, 32, 12, 106, 101, 241, 78, 161, 16, 240, 158, 42, 24, 29, 121, 78, 19, 157, 185, 32, 162, 95, 214, 175, 46, 170, 100, 212, 33, 27, 190, 139, 121, 121, 222, 230, 125, 251, 21, 210, 246, 215, 127, 176, 224, 38, 184, 201, 74, 76, 133, 233, 129, 48, 239, 106, 164, 190, 29, 118, 71, 79, 203, 92, 71, 68, 96, 33, 240, 228, 62, 45, 196, 149, 21, 23, 143, 169, 163, 136, 206, 214, 244, 26, 194, 25, 101, 8, 236, 247, 5, 164, 117, 40, 220, 52, 217, 92, 179]
  3. Printed from wasi: This is from a main function
  4. This is from a main function
  5. The env vars are as follows.
  6. The args are as follows.
  7. /wasi_example_main.wasm
  8. 50000000
  9. File content is This is in a file
  10. pod "wasi-demo-2" deleted

一个基于 WebAssembly 的 HTTP 服务

另一篇文章解释了如何编译、打包和发布一个简单的 WebAssembly HTTP 服务应用程序作为容器镜像到 Docker hub。 在 Kubernetes 集群中运行 Docker Hub 中基于 WebAssembly 的镜像,方法如下。

  1. sudo cluster/kubectl.sh run --restart=Never http-server --image=avengermojo/http_server:with-wasm-annotation --annotations="module.wasm.image/variant=compat" --overrides='{"kind":"Pod", "apiVersion":"v1", "spec": {"hostNetwork": true}}'

由于我们在 kubectl run 命令中使用了 hostNetwork ,HTTP 服务器镜像运行在本地网络上,IP 地址是 127.0.0.1 。 现在,你可以使用 curl 命令来访问 HTTP 服务。

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

就是这样!