您的当前位置:首页正文

Readiness probe failed: caliconode is not ready: BIRD is not ready: BGP not established w

2024-11-10 来源:个人技术集锦

Calico 问题

:Readiness probe failed: caliconode is not ready: BIRD is not ready: BGP not established with 10.1.126.32

解决方法:

添加如下2行:

3654             - name: IP_AUTODETECTION_METHOD
3655               value: "interface=ens*"

最终如下图

3651             - name: CLUSTER_TYPE
3652               value: "k8s,bgp"
3653             # Auto-detect the BGP IP address.
3654             - name: IP_AUTODETECTION_METHOD
3655               value: "interface=ens*"
3656             - name: IP
3657               value: "autodetect"
3658             # Enable IPIP
3659             - name: CALICO_IPV4POOL_IPIP
3660               value: "Always"

Top