rancher的calico报错Invalidating dataplane cache ipVersion=0x4 reason=“chain update“ table=“filter“

悠悠 2022-11-19 13:57 35阅读 0赞

calico提示:

  1. Invalidating dataplane cache ipVersion=0x4 reason="chain update" table="filter"

解决方法,修改calico对应yml,修改readness和liveness对应的内容为:

  1. livenessProbe:
  2. failureThreshold: 6
  3. httpGet:
  4. host: localhost
  5. path: /liveness
  6. port: 9099
  7. scheme: HTTP
  8. initialDelaySeconds: 10
  9. periodSeconds: 10
  10. successThreshold: 1
  11. timeoutSeconds: 1
  12. name: calico-node
  13. readinessProbe:
  14. failureThreshold: 3
  15. httpGet:
  16. host: localhost
  17. path: /readiness
  18. port: 9099
  19. scheme: HTTP

参考https://github.com/rancher/rancher/issues/19947

发表评论

表情:
评论列表 (有 0 条评论,35人围观)

还没有评论,来说两句吧...

相关阅读