Skip to content

Instantly share code, notes, and snippets.

@LucasRoesler
Created February 1, 2019 09:45
Show Gist options
  • Save LucasRoesler/4997f25b9ce79eb343b948acc7f5b8fe to your computer and use it in GitHub Desktop.
Save LucasRoesler/4997f25b9ce79eb343b948acc7f5b8fe to your computer and use it in GitHub Desktop.
Deploy the experimental of-gateway with ingress and basic auth, then run load tests using hey
#!/usr/bin/env bash
GATEWAY=of.dev.contiamo.io
PASSWORD=$(head -c 12 /dev/urandom | shasum| cut -d' ' -f1)
mkdir -p $HOME/Code
cat > "$HOME/Code/of-concurrency-test2.yaml" <<- EndOfMessage
basic_auth: true
functionNamespace: openfaas-fn
exposeServices: false
ingress:
enabled: true
hosts:
- host: $GATEWAY
path: /
serviceName: gateway
servicePort: 8080
gateway:
image: openfaas/gateway:5e78156833dce5d07ec2bf6b454232c5ea309acf
EndOfMessage
kubectl -n openfaas create secret generic basic-auth \
--from-literal=basic-auth-user=admin \
--from-literal=basic-auth-password="$PASSWORD"
helm upgrade openfaas --install openfaas/openfaas \
--debug \
--namespace openfaas \
--values $HOME/Code/of-concurrency-test.yaml
sleep 10s
faas-cli login --gateway http://$GATEWAY -u admin -p $PASSWORD
faas-cli store deploy nslookup --gateway http://$GATEWAY
faas-cli store deploy NodeInfo --gateway http://$GATEWAY
hey -n 1000 -c 10 -m=POST http://$GATEWAY/function/nodeinfo -a admin:$PASSWORD
hey -n 1000 -c 10 -d=google.com -m=POST http://$GATEWAY/function/nslookup -a admin:$PASSWORD
hey -n 5000 -c 100 -m=POST http://$GATEWAY/function/nodeinfo -a admin:$PASSWORD
hey -n 5000 -c 100 -d=google.com -m=POST http://$GATEWAY/function/nslookup -a admin:$PASSWORD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment