mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
Needed due to CLI updates. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
23 lines
486 B
YAML
23 lines
486 B
YAML
provider:
|
|
name: openfaas
|
|
gateway: http://127.0.0.1:8080 # can be a remote server
|
|
|
|
# sample functions go here, but can be created in the UI too.
|
|
functions:
|
|
nodeinfo:
|
|
lang: dockerfile
|
|
image: functions/nodeinfo:latest-armhf
|
|
|
|
markdown:
|
|
lang: dockerfile
|
|
image: functions/markdownrender:latest-armhf
|
|
|
|
wordcount:
|
|
image: functions/alpine:latest-armhf
|
|
fprocess: "wc"
|
|
|
|
echoit:
|
|
lang: dockerfile
|
|
image: functions/alpine:latest-armhf
|
|
fprocess: "cat"
|