Skip to content

Commit bffab37

Browse files
committed
📝 Add or update documentation: update doc
1 parent cd0cdc9 commit bffab37

8 files changed

+26
-17
lines changed

docs/capsule-http-faas-mode.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A Capsule HTTP server can start/spawn other Capsule HTTP server processes.
1010
### Install the last version of Capsule HTTP
1111

1212
```bash
13-
VERSION="v0.4.1" OS="linux" ARCH="arm64"
13+
VERSION="v0.4.2" OS="linux" ARCH="arm64"
1414
wget -O capsule-http https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-http-${VERSION}-${OS}-${ARCH}
1515
chmod +x capsule-http
1616
sudo cp capsule-http /usr/local/bin/capsule-http
@@ -24,7 +24,7 @@ capsule-http --version
2424
**CapsCtl** is a CLI to send commands to the Capsule HTTP server when it is unning in **FaaS** mode.
2525

2626
```bash
27-
VERSION="v0.4.1" OS="linux" ARCH="arm64"
27+
VERSION="v0.4.2" OS="linux" ARCH="arm64"
2828
wget -O capsctl https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsctl-${VERSION}-${OS}-${ARCH}
2929
chmod +x capsctl
3030
sudo cp capsctl /usr/local/bin/capsctl
@@ -51,7 +51,7 @@ You should get an output like this:
5151
```
5252
2023/05/29 15:12:18 🚀 faas mode activated!
5353
2023/05/29 15:12:18 📦 wasm module loaded: ./functions/index-page/index-page.wasm
54-
2023/05/29 15:12:18 💊 Capsule [HTTP] v0.4.1 🫑 [pepper]
54+
2023/05/29 15:12:18 💊 Capsule [HTTP] v0.4.2 ⛱️ [beach umbrella]
5555
http server is listening on: 8080 🌍
5656
```
5757

docs/capsule-http-install-pi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010

1111
## Install Capsule HTTP
12-
VERSION="v0.4.1" OS="linux" ARCH="arm64"
12+
VERSION="v0.4.2" OS="linux" ARCH="arm64"
1313
wget -O capsule-http https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-http-${VERSION}-${OS}-${ARCH}
1414
chmod +x capsule-http
1515
./capsule-http --version
@@ -27,7 +27,7 @@ scp capsule-http-v0.4.1-linux-arm64 [email protected]:./
2727
ssh [email protected] -f "./capsule-http --httpPort=8080 --faas=true"
2828
```
2929

30-
Try: `curl http://capsulezero.local:8080`, you should get `Capsule [HTTP] v0.4.1 🫑 [pepper][faas]`
30+
Try: `curl http://capsulezero.local:8080`, you should get `Capsule [HTTP] v0.4.2 ⛱️ [beach umbrella][faas]`
3131

3232

3333
## Deploy some functions

docs/capsule-http-ovh-deploy.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ssh -i ./keys/capsule ubuntu@${OVH_IP}
1616
## Install the last version of Capsule HTTP on the OVH Cloud instance
1717

1818
```bash
19-
VERSION="v0.4.1" OS="linux" ARCH="amd64"
19+
VERSION="v0.4.2" OS="linux" ARCH="amd64"
2020
wget -O capsule-http https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-http-${VERSION}-${OS}-${ARCH}
2121

2222
chmod +x capsule-http
@@ -57,15 +57,15 @@ sudo apt-get install iptables-persistent
5757
If you open this URL https://faas.capsule.foundation/ on your browser, you should see the following message:
5858

5959
```bash
60-
Capsule [HTTP] v0.4.1 🫑 [pepper][faas]
60+
Capsule [HTTP] v0.4.2 ⛱️ [beach umbrella]
6161
```
6262

6363
### Install the last version of CapsCtl
6464

6565
**CapsCtl** is a CLI to send commands to the Capsule HTTP server when it is running in **FaaS** mode.
6666

6767
```bash
68-
VERSION="v0.4.1" OS="linux" ARCH="arm64"
68+
VERSION="v0.4.2" OS="linux" ARCH="arm64"
6969
wget -O capsctl https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsctl-${VERSION}-${OS}-${ARCH}
7070
chmod +x capsctl
7171
sudo cp capsctl /usr/local/bin/capsctl
@@ -99,7 +99,7 @@ Create a file named `index.html` in a directory:
9999
<section class="container">
100100
<div>
101101
<h1 class="title">👋 Hello World 🌍</h1>
102-
<h2 class="subtitle">Served with 💜 by Capsule 💊 [HTTP] v0.4.1 🫑 [pepper] </h2>
102+
<h2 class="subtitle">Served with 💜 by Capsule 💊 [HTTP] v0.4.2 ⛱️ [beach umbrella] </h2>
103103
<h2 class="subtitle">🎉 Hosted on OVH Cloud [🚀 Faas mode]</h2>
104104
<h2 class="subtitle">🥰 With the help of @titimoby</h2>
105105
</div>

docs/docker-capsule-http.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# 🐳 Capsule HTTP Docker image
22

3-
!!! info "Capsule HTTP Docker images v0.4.1 🫑 [pepper]"
4-
- `botsgarden/capsule-http-linux-arm64:0.4.1`
5-
- `botsgarden/capsule-http-linux-amd64:0.4.1`
3+
!!! info "Capsule HTTP Docker images v0.4.2 ⛱️ [beach umbrella]"
4+
- `botsgarden/capsule-http-linux-arm64:0.4.2`
5+
- `botsgarden/capsule-http-linux-amd64:0.4.2`
66

77
> https://hub.docker.com/repositories/botsgarden
88
@@ -13,7 +13,7 @@
1313
```bash
1414
GOOS="linux"
1515
GOARCH="arm64"
16-
IMAGE_TAG="0.4.1"
16+
IMAGE_TAG="0.4.2"
1717
IMAGE_NAME="botsgarden/capsule-http-${GOOS}-${GOARCH}"
1818

1919
docker run \
@@ -29,7 +29,7 @@ docker run \
2929
Create a new `Dockerfile`:
3030

3131
```dockerfile
32-
FROM botsgarden/capsule-http-linux-arm64:0.4.1
32+
FROM botsgarden/capsule-http-linux-arm64:0.4.2
3333
COPY hello-world.wasm .
3434
EXPOSE 8080
3535
CMD ["/capsule-http", "--wasm=./hello-world.wasm", "--httpPort=8080"]

docs/getting-started-cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
First, download the last version of the Capsule CLI for the appropriate OS & ARCH (and release version):
66

77
```bash
8-
VERSION="v0.4.1" OS="linux" ARCH="arm64"
8+
VERSION="v0.4.2" OS="linux" ARCH="arm64"
99
wget -O capsule https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-${VERSION}-${OS}-${ARCH}
1010
chmod +x capsule
1111
```

docs/getting-started-http-ngrok.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ NGROK_AUTHTOKEN="${YOUR_NGROK_AUTHTOKEN}" \
1515
The ouput will be like this:
1616

1717
```bash
18-
2023/05/18 11:25:36 💊 Capsule v0.4.1 🫑 [pepper] http server is listening on: 6666 🌍
18+
2023/05/18 11:25:36 💊 Capsule v0.4.2 ⛱️ [beach umbrella] http server is listening on: 6666 🌍
1919
2023/05/18 11:25:37 👋 Ngrok tunnel created: https://d298-88-173-112-231.ngrok-free.app
2020
2023/05/18 11:25:37 🤚 Ngrok URL: /home/ubuntu/workspaces/capsule/capsule-http/ngrok.url
2121
```

docs/getting-started-http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
First, download the last version of the Capsule HTTP server for the appropriate OS & ARCH (and release version):
66

77
```bash
8-
VERSION="v0.4.1" OS="linux" ARCH="arm64"
8+
VERSION="v0.4.2" OS="linux" ARCH="arm64"
99
wget -O capsule-http https://github.com/bots-garden/capsule/releases/download/${VERSION}/capsule-http-${VERSION}-${OS}-${ARCH}
1010
chmod +x capsule-http
1111
```

docs/index.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Capsule Project: the nano wasm runners
22

33
!!! info "What's new?"
4+
`v0.4.2 ⛱️ [beach umbrella]`:
5+
6+
- Update with the last version of [Wazero v1.4.0](https://github.com/tetratelabs/wazero/releases/tag/v1.4.0).
7+
- Capsule HTTP is faster thanks to the Wazero optimisations.
8+
- Capsule HDK: `v0.0.7` (🐞 fix with Redis + Wazero v1.4.0)
9+
- Capsule MDK: `v0.0.6` (🐞 fix with Redis)
10+
411
`v0.4.1 🫑 [pepper]`:
512

613
- Update with the last version of [Wazero v1.3.0](https://github.com/tetratelabs/wazero/releases/tag/v1.3.0).
@@ -119,6 +126,8 @@ Capsule applications bring superpowers to the WASM modules with **host functions
119126
## History
120127

121128
!!! info "Releases"
129+
130+
- `v0.4.2 ⛱️ [beach umbrella]`: update with the last version of [Wazero v1.4.0](https://github.com/tetratelabs/wazero/releases/tag/v1.4.0) + 🐞 fix with Redis.
122131
- `v0.4.1 🫑 [pepper]`: update with the last version of [Wazero v1.3.0](https://github.com/tetratelabs/wazero/releases/tag/v1.3.0) + [GitLab webhook sample](https://github.com/bots-garden/capsule/tree/main/capsule-http/functions/gitlab-webhook)
123132
- `v0.4.0 🌶️ [chili pepper]`: update of [HDK 0.0.4 then 0.0.5](https://github.com/bots-garden/capsule-host-sdk/releases/tag/v0.0.5), (🎉 performances: more than x 2 🚀). **capsule-http**: add of 2 endpoints (`/metrics`and `/health`) triggering the `OnMetrics` and `OnHealthCheck` functions of the WASM module.
124133
- `v0.3.9 🥒 [cucumber]`: update of [HDK 0.0.3](https://github.com/bots-garden/capsule-host-sdk) with [Wazero 1.2.0](https://github.com/tetratelabs/wazero/releases/tag/v1.2.0) and [MDK 0.0.3](https://github.com/bots-garden/capsule-module-sdk) (encoding of the HTML string into JSON string, then it's easier to serve HTML)

0 commit comments

Comments
 (0)