You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> In a future version, the wasm file won't be mandatory anymore.
58
+
> **Remarks:**
59
+
> - the wasm file (`--wasm`) is optional (a default message is served if not specified)
60
+
> -`CAPSULE_FAAS_TOKEN` is used to authenticate the `capsctl` CLI
61
+
62
+
## Start a function
55
63
56
-
## Launch another Capsule HTTP server
64
+
With the FaaS mode activated, you can start functions. It' like running another **Capsule HTTP** processes (one wasm function == one Capsule HTTP process).
57
65
58
66
```bash
59
67
export CAPSULE_FAAS_TOKEN="ILOVEPANDAS"
@@ -67,13 +75,14 @@ capsctl \
67
75
--revision=green \
68
76
--description="this the hello module, green revision" \
69
77
--env='["MESSAGE=🟢","GREETING=🤗"]' \
70
-
--path="/usr/local/bin/capsule-http" \
71
78
--wasm=./functions/hello-green/hello-green.wasm
72
79
```
73
-
> -`--stopAfter=10` this will stop the Capsule HTTP server process after 10 seconds
80
+
> -`--stopAfter=10` this will stop the Capsule HTTP server process after 10 seconds ()optional
74
81
> -`--stopAfter` is not mandatory (then the Capsule HTTP server process will never stop)
75
-
> - if the process is stopped, the Capsule HTTP server will be restarted at every call
76
-
> -`--path` means you can use various version of Capsule HTTP
82
+
> - if the process is stopped, the Capsule HTTP server will be restarted at next call
83
+
> -`--description=` is optional
84
+
> -`--env='["MESSAGE=🟢","GREETING=🤗"]'` allows to pass environment variables to the function (optional)
85
+
> -`--wasm`: where to find the wasm file
77
86
78
87
**Now you can use this URL `http://localhost:8080/functions/hello/green` to call the hello green function**
79
88
@@ -85,20 +94,36 @@ curl -X POST http://localhost:8080/functions/hello/green \
85
94
-d "Bob Morane"
86
95
```
87
96
88
-
## Launch another Capsule HTTP server process
97
+
### Default revision
98
+
99
+
If you don't specify a revision, the default revision is called **default**, then you can call the function like this:
100
+
101
+
```bash
102
+
curl -X POST http://localhost:8080/functions/hello \
103
+
-H 'Content-Type: text/plain; charset=utf-8' \
104
+
-d "Bob Morane"
105
+
```
106
+
107
+
Or like this:
108
+
109
+
```bash
110
+
curl -X POST http://localhost:8080/functions/hello/default \
111
+
-H 'Content-Type: text/plain; charset=utf-8' \
112
+
-d "Bob Morane"
113
+
```
114
+
115
+
> 👋 the revision concept is useful to handle several version of a wasm module/function.
--description="this the hello module, blue revision" \
100
-
--env='["MESSAGE=🔵","GREETING=🎉"]'\
101
-
--path="/usr/local/bin/capsule-http" \
102
127
--wasm=./functions/hello-blue/hello-blue.wasm
103
128
```
104
129
@@ -112,7 +137,7 @@ curl -X POST http://localhost:8080/functions/hello/blue \
112
137
-d "Bob Morane"
113
138
```
114
139
115
-
## Stop and remove a running Capsule HTTP server process
140
+
## Drop: stop and remove a running function
116
141
117
142
```bash
118
143
export CAPSULE_FAAS_TOKEN="ILOVEPANDAS"
@@ -149,3 +174,29 @@ curl -X POST http://localhost:8080/functions/hello/green \
149
174
-H 'Content-Type: text/plain; charset=utf-8' \
150
175
-d "Bob Morane"
151
176
```
177
+
178
+
## Download the wasm module before starting the function
179
+
180
+
You can specify to the Capsule HTTP process with the `--url` option, where to download the wasm file and where to save it before starting with the `--wasm` option:
0 commit comments