This sample demonstrates how to use KEDA to scale a Kubernetes deployment based on multiple metrics. Specifically for not scaling up deployment when the error threshold is exceeded, else scaling based on a queue length metric. This
The setup.sh script installs the required components for this sample. Details of the components have been added as comments in the script.
Key points to note:
- After the Line in the setup.sh script, which builds the test go application container image, and pushes it to ACR, you should update the ACR_NAME with your created ACR name in deployment.yaml file, for both the deployments.
- The Prometheus scrape config scrapes the test go apps for the msg_queue_length and rate_429_errors metrics.
Details of the prometheus query used, can be found in the keda-scaled-object.yaml
After the installation, you can follow the steps in tests.sh to test the scaling behavior.