Training
Module
Create your first Azure Kubernetes Service (AKS) Edge Essentials single machine cluster - Training
Deploy AKS Edge Essentials in a single machine K3S cluster with a Linux and Windows node.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
WebAssembly (Wasm) is a binary format that is optimized for fast download and maximum execution speed in a Wasm runtime. A Wasm runtime is designed to run on a target architecture and execute Wasm components in a sandbox, isolated from the host computer, at near-native performance. By default, Wasm components can't access resources on the host outside of the sandbox unless it is explicitly allowed. For example, Wasm components can't communicate over sockets, receive or send HTTP traffic, or even to access things like environment variables without explicit approval. The WebAssembly System Interface (WASI) standard defines an API for Wasm runtimes to provide access to Wasm components to the environment and resources outside the host using a capabilities model.
Important
WASI nodepools now use SpinKube containerd shim to run Wasm workloads. Previously, AKS used Krustlet to allow Wasm modules to be run on Kubernetes. If you are still using Krustlet-based WASI nodepools, you can migrate to containerd shims by creating a new WASI nodepool and migrating your workloads to the new nodepool.
You must have the latest version of Azure CLI installed.
Important
AKS preview features are available on a self-service, opt-in basis. Previews are provided "as is" and "as available," and they're excluded from the service-level agreements and limited warranty. AKS previews are partially covered by customer support on a best-effort basis. As such, these features aren't meant for production use. For more information, see the following support articles:
To install the aks-preview extension, run the following command:
az extension add --name aks-preview
Run the following command to update to the latest version of the extension released:
az extension update --name aks-preview
Register the WasmNodePoolPreview
feature flag by using the az feature register command, as shown in the following example:
az feature register --namespace "Microsoft.ContainerService" --name "WasmNodePoolPreview"
It takes a few minutes for the status to show Registered. Verify the registration status by using the az feature show command:
az feature show --namespace "Microsoft.ContainerService" --name "WasmNodePoolPreview"
When the status reflects Registered, refresh the registration of the Microsoft.ContainerService resource provider by using the az provider register command:
az provider register --namespace Microsoft.ContainerService
To add a Wasm/WASI node pool, use the az aks nodepool add command. The following example creates a WASI node pool named mywasipool with one node.
az aks nodepool add \
--resource-group myResourceGroup \
--cluster-name myAKSCluster \
--name mywasipool \
--node-count 1 \
--workload-runtime WasmWasi
Note
The default value for the workload-runtime parameter is ocicontainer. To create a node pool that runs container workloads, omit the workload-runtime parameter or set the value to ocicontainer.
Verify the workloadRuntime value using az aks nodepool show
. For example:
az aks nodepool show -g myResourceGroup --cluster-name myAKSCluster -n mywasipool --query workloadRuntime
The following example output shows the mywasipool has the workloadRuntime type of WasmWasi.
az aks nodepool show -g myResourceGroup --cluster-name myAKSCluster -n mywasipool --query workloadRuntime
"WasmWasi"
Configure kubectl
to connect to your Kubernetes cluster using the az aks get-credentials command. The following command:
az aks get-credentials -n myakscluster -g myresourcegroup
Use kubectl get nodes
to display the nodes in your cluster.
kubectl get nodes -o wide
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME
aks-mywasipool-12456878-vmss000000 Ready agent 123m v1.23.12 <WASINODE_IP> <none> Ubuntu 22.04.1 LTS 5.15.0-1020-azure containerd://1.5.11+azure-2
aks-nodepool1-12456878-vmss000000 Ready agent 133m v1.23.12 <NODE_IP> <none> Ubuntu 22.04.1 LTS 5.15.0-1020-azure containerd://1.5.11+azure-2
Use kubectl describe node
to show the labels on a node in the WASI node pool. The following example shows the details of aks-mywasipool-12456878-vmss000000.
kubectl describe node aks-mywasipool-12456878-vmss000000
Name: aks-mywasipool-12456878-vmss000000
Roles: agent
Labels: agentpool=mywasipool
...
kubernetes.azure.com/wasmtime-spin-v2=true
...
Create a file named spin.yaml with the following content:
apiVersion: apps/v1
kind: Deployment
metadata:
name: wasm-spin
spec:
replicas: 1
selector:
matchLabels:
app: wasm-spin
template:
metadata:
labels:
app: wasm-spin
spec:
runtimeClassName: wasmtime-spin-v2
containers:
- name: spin-hello
image: ghcr.io/spinkube/containerd-shim-spin/examples/spin-rust-hello:v0.15.1
command: ["/"]
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
---
apiVersion: v1
kind: Service
metadata:
name: wasm-spin
spec:
type: LoadBalancer
ports:
- protocol: TCP
port: 80
targetPort: 80
selector:
app: wasm-spin
Note
If you want to know more about how to develop Spin applications, see the spin documentation.
Use kubectl
to run your example deployment:
kubectl apply -f spin.yaml
Use kubectl get svc
to get the external IP address of the service.
kubectl get svc
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kubernetes ClusterIP 10.0.0.1 <none> 443/TCP 10m
wasm-spin LoadBalancer 10.0.133.247 <EXTERNAL-IP> 80:30725/TCP 2m47s
Access the example application at http://EXTERNAL-IP/hello
. The following example uses curl
.
curl http://EXTERNAL-IP/hello
Hello world from Spin!
Note
If your request times out, use kubectl get pods
and kubectl describe pod <POD_NAME>
to check the status of the pod. If the pod is not running, use kubectl get rs
and kubectl describe rs <REPLICA_SET_NAME>
to see if the replica set is having issues creating a new pod.
To remove the example deployment, use kubectl delete
.
kubectl delete -f spin.yaml
To remove the Wasm/WASI node pool, use az aks nodepool delete
.
az aks nodepool delete --name mywasipool -g myresourcegroup --cluster-name myakscluster
The following RuntimeClass are supported on WASI node pools:
The suffix -v0-15-1
, -v0-8-0
, -v0-5-1
, and -v0-3-0
are the versions of the spin shim. You can find the supported versions of the spin shim in the following table:
Azure Kubernetes Service feedback
Azure Kubernetes Service is an open source project. Select a link to provide feedback:
Training
Module
Create your first Azure Kubernetes Service (AKS) Edge Essentials single machine cluster - Training
Deploy AKS Edge Essentials in a single machine K3S cluster with a Linux and Windows node.