mass-deploy

command module
v0.0.0-...-b9a83f9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 25, 2023 License: MIT Imports: 14 Imported by: 0

README

mass-deploy

Deploy functions to OpenFaaS en-masse

This tool exists to load test the OpenFaaS control-plane with a large number of functions.

Example usage, to deploy the env function 100 times

The default --action is create, so can be omitted.

go run . -image ghcr.io/openfaas/alpine:latest \
    -fprocess env \
    --workers 10 \
    --gateway http://127.0.0.1:8081 \
    --functions 1000 \
    --start-at 0

If you're deploying 1000 functions and want to split that into two batches, set the --start-at flag to 0, then 500 for the second batch.

Example usage to delete the functions created earlier:

go run . -image ghcr.io/openfaas/alpine:latest \
    -fprocess env \
    --workers 5 \
    --gateway http://127.0.0.1:8081 \
    --functions 100 \
    --start-at 0 \
    --action=delete

Log tailing without stern:

kubectl logs -l app=gateway  -c operator -n openfaas   -f --prefix

Port forward OpenFaaS:

export OPENFAAS_URL=http://127.0.0.1:8081

kubectl port-forward -n openfaas svc/gateway 8081:8080 &

# If basic auth is enabled, you can now log into your gateway:
PASSWORD=$(kubectl get secret -n openfaas basic-auth -o jsonpath="{.data.basic-auth-password}" | base64 --decode; echo)
echo -n $PASSWORD | faas-cli login --username admin --password-stdin

Status

Internal testing tool for the OpenFaaS Ltd team and contributors

License

MIT

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL