Skip to content

Commit

Permalink
chore(*): bump to 0.11.1 (#213)
Browse files Browse the repository at this point in the history
Signed-off-by: jiaxiao zhou <jiazho@microsoft.com>
  • Loading branch information
Mossaka authored Feb 15, 2024
1 parent 6c507e0 commit 7058f60
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.11.0"
version = "0.11.1"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-lunatic/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-lunatic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "containerd-shim-lunatic-v1"
version = "0.11.0"
version = "0.11.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-slight/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-slight/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "containerd-shim-slight-v1"
version = "0.11.0"
version = "0.11.1"
authors = ["DeisLabs Engineering Team"]
edition = "2021"
repository = 'https://github.com/deislabs/containerd-wasm-shims'
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-spin/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-spin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "containerd-shim-spin-v2"
version = "0.11.0"
version = "0.11.1"
authors = ["DeisLabs Engineering Team"]
edition = "2021"
repository = 'https://github.com/deislabs/containerd-wasm-shims'
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-spin/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Before you begin, you need to have the following installed:
Start a k3d cluster with the wasm shims already installed:

```bash
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.11.0 -p "8081:80@loadbalancer" --agents 2 --registry-create mycluster-registry:12345
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.11.1 -p "8081:80@loadbalancer" --agents 2 --registry-create mycluster-registry:12345
```

Apply RuntimeClass for spin applications to use the spin wasm shim:
Expand Down
2 changes: 1 addition & 1 deletion containerd-shim-wws/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion containerd-shim-wws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "containerd-shim-wws-v1"
version = "0.11.0"
version = "0.11.1"
authors = ["Wasm Labs team <wasmlabs@vmware.com>"]
edition = "2021"
repository = 'https://github.com/deislabs/containerd-wasm-shims'
Expand Down
2 changes: 1 addition & 1 deletion deployments/k3d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.0 -p "8081:80@loadbalancer" --agents 2
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.11.1 -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"
Expand Down
8 changes: 4 additions & 4 deletions deployments/workloads/workload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
runtimeClassName: wasmtime-slight
containers:
- name: slight-hello
image: ghcr.io/deislabs/containerd-wasm-shims/examples/slight-rust-hello:v0.11.0
image: ghcr.io/deislabs/containerd-wasm-shims/examples/slight-rust-hello:v0.11.1
command: ["/"]
resources: # limit the resources to 128Mi of memory and 100m of CPU
limits:
Expand Down Expand Up @@ -54,7 +54,7 @@ spec:
runtimeClassName: wasmtime-spin
containers:
- name: spin-hello
image: ghcr.io/deislabs/containerd-wasm-shims/examples/spin-rust-hello:v0.11.0
image: ghcr.io/deislabs/containerd-wasm-shims/examples/spin-rust-hello:v0.11.1
command: ["/"]
resources: # limit the resources to 128Mi of memory and 100m of CPU
limits:
Expand Down Expand Up @@ -93,7 +93,7 @@ spec:
runtimeClassName: wasmtime-wws
containers:
- name: wws-hello
image: ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:v0.11.0
image: ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:v0.11.1
command: ["/"]
resources: # limit the resources to 128Mi of memory and 100m of CPU
limits:
Expand Down Expand Up @@ -132,7 +132,7 @@ spec:
runtimeClassName: wasmtime-lunatic
containers:
- name: lunatic
image: ghcr.io/deislabs/containerd-wasm-shims/examples/lunatic-submillisecond:v0.11.0
image: ghcr.io/deislabs/containerd-wasm-shims/examples/lunatic-submillisecond:v0.11.1
resources: # limit the resources to 128Mi of memory and 100m of CPU
limits:
cpu: 100m
Expand Down
2 changes: 1 addition & 1 deletion images/slight/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-server-lib"
version = "0.11.0"
version = "0.11.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion images/spin-dapr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo mv ./spin /usr/local/bin/
### Run example with K3d:
```sh
# start the K3d cluster
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.11.0 -p "8081:80@loadbalancer"
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.11.1 -p "8081:80@loadbalancer"
# Install Dapr
dapr init -k --wait
# or via helm
Expand Down
2 changes: 1 addition & 1 deletion images/spin-inbound-redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spin-inbound-redis"
version = "0.11.0"
version = "0.11.1"
authors = ["Suneet Nangia <suneetnangia@gmail.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion images/spin-outbound-redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spin-outbound-redis"
version = "0.11.0"
version = "0.11.1"
authors = ["DeisLabs Engineering Team"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion images/spin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spin-rust-hello"
version = "0.11.0"
version = "0.11.1"
authors = ["DeisLabs Engineering Team"]
edition = "2021"

Expand Down

0 comments on commit 7058f60

Please sign in to comment.