You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chaos-tproxy controller does not properly handle the logic to end the HttpChaos Experiment, and the container remains in a disconnected state after the experiment is completed
Expected Behavior
After the experiment is over, the container network should return to normal
Current Behavior
After the HttpChaos experiment, the container is still in a disconnected state.
Kubernetes: AWS EKS with kubernetes version v1.24.8-eks-ffeb93d
Chaos Mesh: chaos-mesh v2.5.1
Chaos Daemon: chaos-daemon v2.5.1
Detailed Description
I entered nginx container after experiment ,
I found that the arp table is not normal,
so, I use "arp -s gateway eth0" recover arp table,
nginx container is back to normal.
I known Chaos-tproxy controller is the executor of "change arp table" and "restore arp table",
so, This maybe a Chaso-tproxy's bug.
The text was updated successfully, but these errors were encountered:
Chaos-tproxy controller does not properly handle the logic to end the HttpChaos Experiment, and the container remains in a disconnected state after the experiment is completed
Expected Behavior
After the experiment is over, the container network should return to normal
Current Behavior
After the HttpChaos experiment, the container is still in a disconnected state.
Steps to Reproduce
setup chaos mesh environment on aws eks ( basic setup )
deploy nginx in namespace chaos-test
$ cat chaos.yaml apiVersion: chaos-mesh.org/v1alpha1 kind: HTTPChaos metadata: name: test-http-chaos namespace: chaos-test spec: mode: all selector: labelSelectors: app: nginx target: Request port: 80 method: GET path: /api abort: true duration: 1s $ kubectl apply -f chaos.yaml
$ kubectl -n chaos-test port-forward deploy/nginx 8000:80 (exposed in step 3) $ curl -v 127.0.0.1:8000 (wait minutes, got http 502 from kubernetes apiserver)
Context (Environment)
Kubernetes: AWS EKS with kubernetes version v1.24.8-eks-ffeb93d
Chaos Mesh: chaos-mesh v2.5.1
Chaos Daemon: chaos-daemon v2.5.1
Detailed Description
I entered nginx container after experiment ,
I found that the arp table is not normal,
so, I use "arp -s gateway eth0" recover arp table,
nginx container is back to normal.
I known Chaos-tproxy controller is the executor of "change arp table" and "restore arp table",
so, This maybe a Chaso-tproxy's bug.
The text was updated successfully, but these errors were encountered: