OpenFaaS Lab 1

Familiarising yourself with the OpenFaaS UI

Posted by Krystian Wojcicki on Monday, July 29, 2019 Tags: Guide   1 minute read

Lab 1

  • Visiting and using the OpenFaas ui

First lets deploy a bunch of pre created functions

docker pull functions/alpine:latest
kind load docker-image functions/alpine:latest
docker pull functions/hubstats:latest
kind load docker-image functions/hubstats:latest
docker pull functions/markdown-render:latest
kind load docker-image functions/markdown-render:latest
docker pull functions/nodeinfo:latest
kind load docker-image functions/nodeinfo:latest

faas-cli deploy -f https://raw.githubusercontent.com/openfaas/faas/master/stack.yml --gateway $ip:31112

Next visit the OpenFaas UI and try invoking various functions

lab1-ui