diff --git a/Cargo.lock b/Cargo.lock index bdfc2c3..2894657 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -175,7 +175,7 @@ dependencies = [ [[package]] name = "containerd-wasm-shims-tests" -version = "0.9.3" +version = "0.10.0" dependencies = [ "anyhow", "curl", diff --git a/Cargo.toml b/Cargo.toml index a80120e..6bfee5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.9.3" +version = "0.10.0" edition = "2021" license = "Apache-2.0" readme = "README.md" diff --git a/containerd-shim-lunatic/Cargo.lock b/containerd-shim-lunatic/Cargo.lock index d15f323..a9bdec4 100644 --- a/containerd-shim-lunatic/Cargo.lock +++ b/containerd-shim-lunatic/Cargo.lock @@ -583,7 +583,7 @@ dependencies = [ [[package]] name = "containerd-shim-lunatic-v1" -version = "0.9.3" +version = "0.10.0" dependencies = [ "anyhow", "chrono", diff --git a/containerd-shim-lunatic/Cargo.toml b/containerd-shim-lunatic/Cargo.toml index a8b17f1..89d0992 100644 --- a/containerd-shim-lunatic/Cargo.toml +++ b/containerd-shim-lunatic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "containerd-shim-lunatic-v1" -version = "0.9.3" +version = "0.10.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/containerd-shim-slight/Cargo.lock b/containerd-shim-slight/Cargo.lock index 3501d0e..5b0dc87 100644 --- a/containerd-shim-slight/Cargo.lock +++ b/containerd-shim-slight/Cargo.lock @@ -1459,7 +1459,7 @@ dependencies = [ [[package]] name = "containerd-shim-slight-v1" -version = "0.9.3" +version = "0.10.0" dependencies = [ "anyhow", "containerd-shim-wasm", diff --git a/containerd-shim-slight/Cargo.toml b/containerd-shim-slight/Cargo.toml index 8c331a9..fe08fab 100644 --- a/containerd-shim-slight/Cargo.toml +++ b/containerd-shim-slight/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "containerd-shim-slight-v1" -version = "0.9.3" +version = "0.10.0" authors = ["DeisLabs Engineering Team"] edition = "2021" repository = 'https://github.com/deislabs/containerd-wasm-shims' diff --git a/containerd-shim-spin/Cargo.lock b/containerd-shim-spin/Cargo.lock index 88e2d79..af73718 100644 --- a/containerd-shim-spin/Cargo.lock +++ b/containerd-shim-spin/Cargo.lock @@ -975,7 +975,7 @@ dependencies = [ [[package]] name = "containerd-shim-spin-v2" -version = "0.9.3" +version = "0.10.0" dependencies = [ "anyhow", "containerd-shim-wasm", diff --git a/containerd-shim-spin/Cargo.toml b/containerd-shim-spin/Cargo.toml index c34fbf1..cb2471a 100644 --- a/containerd-shim-spin/Cargo.toml +++ b/containerd-shim-spin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "containerd-shim-spin-v2" -version = "0.9.3" +version = "0.10.0" authors = ["DeisLabs Engineering Team"] edition = "2021" repository = 'https://github.com/deislabs/containerd-wasm-shims' diff --git a/containerd-shim-wws/Cargo.lock b/containerd-shim-wws/Cargo.lock index 16247d2..dc84087 100644 --- a/containerd-shim-wws/Cargo.lock +++ b/containerd-shim-wws/Cargo.lock @@ -847,7 +847,7 @@ dependencies = [ [[package]] name = "containerd-shim-wws-v1" -version = "0.9.3" +version = "0.10.0" dependencies = [ "anyhow", "containerd-shim-wasm", diff --git a/containerd-shim-wws/Cargo.toml b/containerd-shim-wws/Cargo.toml index df2b8c9..1026dd5 100644 --- a/containerd-shim-wws/Cargo.toml +++ b/containerd-shim-wws/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "containerd-shim-wws-v1" -version = "0.9.3" +version = "0.10.0" authors = ["Wasm Labs team "] edition = "2021" repository = 'https://github.com/deislabs/containerd-wasm-shims' diff --git a/deployments/k3d/README.md b/deployments/k3d/README.md index f41f104..e88e978 100644 --- a/deployments/k3d/README.md +++ b/deployments/k3d/README.md @@ -17,7 +17,7 @@ $ tree . ## How to run the example The shell script below will create a k3d cluster locally with the Wasm shims installed and containerd configured. The script then applies the runtime classes for the shims and an example service and deployment. Finally, we curl the `/hello` and receive a response from the example workload. ```shell -k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.9.3 -p "8081:80@loadbalancer" --agents 2 +k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.10.0 -p "8081:80@loadbalancer" --agents 2 kubectl apply -f https://github.com/deislabs/containerd-wasm-shims/raw/main/deployments/workloads/runtime.yaml kubectl apply -f https://github.com/deislabs/containerd-wasm-shims/raw/main/deployments/workloads/workload.yaml echo "waiting 5 seconds for workload to be ready" diff --git a/deployments/workloads/workload.yaml b/deployments/workloads/workload.yaml index 382653f..d515a70 100644 --- a/deployments/workloads/workload.yaml +++ b/deployments/workloads/workload.yaml @@ -15,7 +15,7 @@ spec: runtimeClassName: wasmtime-slight containers: - name: slight-hello - image: ghcr.io/deislabs/containerd-wasm-shims/examples/slight-rust-hello:v0.9.3 + image: ghcr.io/deislabs/containerd-wasm-shims/examples/slight-rust-hello:v0.10.0 command: ["/"] resources: # limit the resources to 128Mi of memory and 100m of CPU limits: @@ -54,7 +54,7 @@ spec: runtimeClassName: wasmtime-spin containers: - name: spin-hello - image: ghcr.io/deislabs/containerd-wasm-shims/examples/spin-rust-hello:v0.9.3 + image: ghcr.io/deislabs/containerd-wasm-shims/examples/spin-rust-hello:v0.10.0 command: ["/"] resources: # limit the resources to 128Mi of memory and 100m of CPU limits: @@ -93,7 +93,7 @@ spec: runtimeClassName: wasmtime-wws containers: - name: wws-hello - image: ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:v0.9.3 + image: ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:v0.10.0 command: ["/"] resources: # limit the resources to 128Mi of memory and 100m of CPU limits: @@ -132,7 +132,7 @@ spec: runtimeClassName: wasmtime-lunatic containers: - name: lunatic - image: ghcr.io/deislabs/containerd-wasm-shims/examples/lunatic-submillisecond:v0.9.3 + image: ghcr.io/deislabs/containerd-wasm-shims/examples/lunatic-submillisecond:v0.10.0 resources: # limit the resources to 128Mi of memory and 100m of CPU limits: cpu: 100m diff --git a/images/slight/Cargo.toml b/images/slight/Cargo.toml index e18b68a..3a95cf4 100644 --- a/images/slight/Cargo.toml +++ b/images/slight/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http-server-lib" -version = "0.9.3" +version = "0.10.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/images/spin-inbound-redis/Cargo.toml b/images/spin-inbound-redis/Cargo.toml index f16eca6..5dfb4f7 100644 --- a/images/spin-inbound-redis/Cargo.toml +++ b/images/spin-inbound-redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spin-inbound-redis" -version = "0.9.3" +version = "0.10.0" authors = ["Suneet Nangia "] edition = "2021" diff --git a/images/spin-outbound-redis/Cargo.toml b/images/spin-outbound-redis/Cargo.toml index b2b6bed..f750f45 100644 --- a/images/spin-outbound-redis/Cargo.toml +++ b/images/spin-outbound-redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spin-outbound-redis" -version = "0.9.3" +version = "0.10.0" authors = ["DeisLabs Engineering Team"] edition = "2021" diff --git a/images/spin/Cargo.toml b/images/spin/Cargo.toml index 22c1b7a..d4f4a47 100644 --- a/images/spin/Cargo.toml +++ b/images/spin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spin-rust-hello" -version = "0.9.3" +version = "0.10.0" authors = ["DeisLabs Engineering Team"] edition = "2021"