From d06aa077d2768defef91f42bb0c3f44354f7bef5 Mon Sep 17 00:00:00 2001 From: Byron Mansfield Date: Thu, 21 Nov 2024 11:34:20 -0800 Subject: [PATCH] Hopefully fixing the locust chart error --- stable/locust/README.md | 2 +- stable/locust/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/locust/README.md b/stable/locust/README.md index e09d1e65..b08fb91f 100644 --- a/stable/locust/README.md +++ b/stable/locust/README.md @@ -86,7 +86,7 @@ helm install my-release oci://ghcr.io/deliveryhero/helm-charts/locust -f values. | loadtest.headless | bool | `false` | whether to run locust with headless settings | | loadtest.locustCmd | string | `"/opt/venv/bin/locust"` | The command to run Locust | | loadtest.locust_host | string | `"https://www.google.com"` | the host you will load test | -| loadtest.locust_lib_configmap | string | `""` | name of a configmap containing your lib (default uses the example lib) | +| loadtest.locust_lib_configmap | string | `"example-lib"` | name of a configmap containing your lib (default uses the example lib) | | loadtest.locust_locustfile | string | `"main.py"` | the name of the locustfile | | loadtest.locust_locustfile_configmap | string | `"example-locustfile"` | name of a configmap containing your locustfile (default uses the example locustfile) | | loadtest.locust_locustfile_path | string | `"/mnt/locust"` | the path of the locustfile (without trailing backslash) | diff --git a/stable/locust/values.yaml b/stable/locust/values.yaml index 7729f55f..c6d77224 100644 --- a/stable/locust/values.yaml +++ b/stable/locust/values.yaml @@ -8,7 +8,7 @@ loadtest: # loadtest.locust_locustfile_configmap -- name of a configmap containing your locustfile (default uses the example locustfile) locust_locustfile_configmap: "example-locustfile" # loadtest.locust_lib_configmap -- name of a configmap containing your lib (default uses the example lib) - locust_lib_configmap: "" + locust_lib_configmap: "example-lib" # loadtest.locust_host -- the host you will load test locust_host: https://www.google.com # loadtest.pip_packages -- a list of extra python pip packages to install