This reporitory is forked from the tutorial from Google on how to conduct distributed load testing using Kubernetes. We have removed the sample webapp and will only be focusing on maintaining an up to date Locust image for use in Helm Charts and other Kubernetes deployments.
In addition to the groundwork laid down by Google, we've merged updates from the honestbee fork and built from there.
For instructions on how to use the Helm Chart to deploy to Kubernetes, we refer to the chart. And for more background on this topic we refer to the Distributed Load Testing Using Kubernetes solution paper.
Note: the image location includes the latest
tag so that the image is pulled down every time a new Pod is launched. To use a Kubernetes-cached copy of the image, remove :latest
from the image location.
Locust can be tested locally using docker-compose
as follows:
-
Start master and worker:
docker-compose -p locust up -d
-
Verify master and worker logs:
docker-compose -p locust logs
-
Open web console:
open localhost:8089
-
Scale up workers:
docker-compose -p locust scale worker=4
Shutting down local test.
docker-compose -p locust stop
This code is Apache 2.0 licensed and more information can be found in LICENSE
. For information on licenses for third party software and libraries, refer to the docker-image/licenses
directory.