chaos-mesh: create networkchaos error use wiki doc
Bug Report
Warning ChaosRecoverFailed 2m41s (x25 over 166m) networkchaos-controller rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing dial tcp 10.200.0.72:31767: connect: connection refused"
What version of Kubernetes are you using?
v1.13
What did you do?
- when I create networkchaos refer to Network Chaos
Reason
- Need to remove metadata/namespaces field,cause the partition here is globally default
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Reactions: 2
- Comments: 18 (10 by maintainers)
@YangKeao Thank you very much, you are right, i have change the controller-manager deployment’s imagePullPolicy from
imagePullPolicy: IfNotPresent
toimagePullPolicy: always
, then that worked. I have found that by default, the controller-manager imagePullPolicy isIfNotPresent
and the chaos-daemon’s imagePullPolicy isAlways
. So this will lead the mismatch between controller-manager and chaos-daemon.