http experiments finish the pod service not recovery
Bug Report
What version of Kubernetes are you using? aws eks v.1.29.0
What version of Chaos Mesh are you using? Controller manager Version: version.Info{GitVersion:"chart-2.6.3", GitCommit:"b159d1c5a361ca350ca7789c9eb7fc917479db39", BuildDate:"2024-01-23T15:04:53Z", GoVersion:"go1.19.7", Compiler:"gc", Platform:"linux/amd64"}
What did you do? / Minimal Reproducible Example
1 build deployment in default namespace
apiVersion: apps/v1 kind: Deployment metadata: name: httpd namespace: default labels: app: httpd spec: replicas: 1 selector: matchLabels: app: httpd template: metadata: labels: app: httpd spec: containers: - name: httpd image: centos/httpd ports: - containerPort: 8080 securityContext: privileged: true
2 config experiments
kind: HTTPChaos apiVersion: chaos-mesh.org/v1alpha1 metadata: namespace: default name: chaos-test-http-02 spec: selector: namespaces: - default labelSelectors: app: httpd mode: all target: Request abort: true port: 80 path: '*' method: POST duration: 5s
when the experiments finished, i found the request still not work
and i found the pod still has the tproxy process and inside the pod the request is ok
What did you expect to see? the request recovery
Source: chaos-mesh/chaos-mesh