本文作者:丁辉
Helm部署Locust
介绍
Locust 是一个开源的性能测试工具,它主要用于测试网站或网络应用程序的负载能力和性能。与其他性能测试工具不同,Locust 使用 Python 语言进行测试脚本的编写,这使得它更灵活和易于使用。
开始部署
添加 Helm 仓库
1
2helm repo add deliveryhero https://charts.deliveryhero.io/
helm repo update编写 values.yaml 文件
1
vi locust-values.yaml
内容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15ingress:
enabled: true
className: ""
hosts:
- host: # 域名
pathType: ImplementationSpecific
path: /
tls:
- secretName: locust-tls
hosts:
- # 域名
image:
repository: locustio/locust
tag: latest安装
1
2
3
4
5helm install locust \
--namespace locust \
--create-namespace \
deliveryhero/locust \
-f locust-values.yaml
卸载
卸载 Locust
1
helm uninstall locust -n locust
删除命名空间
1
kubectl delete ns locust
I'm so cute. Please give me money.
- 本文链接: https://blog.offends.cn/Kubernetes/Helm/Helm部署Locust.html
- 版权声明: 本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。