混沌工程之ChaosMesh使用之模拟POD网络延迟
【摘要】 混沌工程之ChaosMesh使用之模拟POD网络延迟
前言
在这一篇中我们来看一下如何模拟 POD 网络故障。
模拟 POD 网络延迟
目标
指定 pod 产生 10 ms延迟。
配置文件
apiVersion: chaos-mesh.org/v1alpha1
kind: NetworkChaos
metadata:
name: web-show-network-delay
spec:
action: delay # the specific chaos action to inject
mode: one # the mode to run chaos action; supported modes are one/all/fixed/fixed-percent/random-max-percent
selector: # pods where to inject chaos actions
namespaces:
- default
labelSelectors:
"app": "web-show" # the label of the pod for chaos injection
delay:
latency: "10ms"
duration: "30s" # duration for the injected chaos experiment
scheduler: # scheduler rules for the running time of the chaos experiments about pods.
cron: "@every 60s"
来看下这段配置,是指定 在 default 的命名空间中,使用 app=web-show
标签搜索 POD,配置网络延迟为 10 ms,持续 30 s时间,并且每 60s 执行一次。
执行
保存上面的配置到 yaml 文件中,执行 apply 命令:
[root@s5 ChaosMesh]# kubectl apply -f network-delay.yaml
networkchaos.chaos-mesh.org/web-show-network-delay created
[root@s5 ChaosMesh]#
验证
这里我们用 jmeter 脚本来验证,直接来查看 summary report。
混沌实验执行前:
混沌实验执行后:
从混沌试验执行前后的平均响应时间来看,响应时间确实增加了10ms左右。
恢复
[root@s5 ChaosMesh]# kubectl delete -f network-delay.yaml
networkchaos.chaos-mesh.org "web-show-network-delay" deleted
这个案例是直接使用yaml文件执行的,并没有从界面上配置。效果和从界面上配置是一样的。
像 chaoblade-operator 也是通过类似的方式实现的。
留个思考题给你
- 这样实现的网络延迟的原理是什么?
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)