Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 946 Bytes

File metadata and controls

36 lines (25 loc) · 946 Bytes

2024-01-keda

Keda is a Kubernetes-based Event Driven Autoscaler. With Keda, you can drive the scaling of any container in Kubernetes based on the number of events needing to be processed.

Sources

Install KEDA

helm upgrade -i --create-namespace --namespace keda --repo https://kedacore.github.io/charts keda keda
helm upgrade -i --create-namespace --namespace keydb --repo https://enapter.github.io/charts keydb keydb --set nodes=1

WERF BUILD

export WERF_BUILDAH_MODE=auto
werf helm dependency update .helm
werf converge --repo  europe-west1-docker.pkg.dev/meetup-devops/images/meetup-keda

Add a star

curl -X POST "localhost:8080/add-task"

Add 100 stars

for i in {1..100}; do curl -X POST "localhost:8080/add-task"; done