All Projects → openfaas → store-functions

openfaas / store-functions

Licence: MIT license
Common CLIs packaged in containers with a HTTP interface

Programming Languages

Dockerfile
14818 projects
go
31211 projects - #10 most used programming language
javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language

store-functions

Common CLIs packaged in containers with a HTTP interface

Sponsor this build

About these functions:

  • They are multi-arch - for armhf, arm64 and x86_64
  • They are built with faas-cli
  • They are built and published to GHCR as container images to avoid the Docker Hub's rate limits

You may also like the bash template for OpenFaaS, so you can perform multiple tasks with CLIs or call your scripts over HTTPS.

Using the functions

With OpenFaaS

You can deploy them through openfaas on Kubernetes, or openfaas on a VM with faasd.

faas-cli store deploy curl

faas-cli store deploy nodeinfo

faas-cli deploy --image ghcr.io/openfaas/alpine:latest \
  --name env --fprocess="env"

Example usage:

faas-cli store deploy nmap
echo -n "-sP 192.168.0.0/24" faas-cli invoke nmap

With Docker

Or run them ad-hoc with Docker:

docker run -p 8080:8080 --name hey \
  -d ghcr.io/openfaas/hey:latest

curl http://127.0.0.1:8080 -d "-c 5 -n 1000 https://your-service.com/"

Included functions

  • alpine - a base for running built-in bash or busybox commands like env (use it to debug headers) or wc -l to count text within a body
  • curl - debug outgoing networking or internal services
  • figlet - print ASCII logso
  • hey - run a load-test against a HTTP API, website, or function with hey
  • nmap - scan a network range
  • nodeinfo - debug auto-scaling, find the container's memory, CPU information and uptime
  • sleep - debug timeouts or async by sleeping for a set duration
  • sentimentanalysis - use Python's textblob library to find out if a statement is positive or negative
  • shasum - generate a SHA for a given input

Other functions: imagemagick, ffmpeg.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].