Skip to content

Commit

Permalink
Hopefully fixing the locust chart error
Browse files Browse the repository at this point in the history
  • Loading branch information
byronmansfield committed Nov 21, 2024
1 parent ee3764b commit d06aa07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/locust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
Expand Down
2 changes: 1 addition & 1 deletion stable/locust/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d06aa07

Please sign in to comment.