클라우드 환경에서 Kubernetes를 구성하고 있습니다.
다음 명령을 사용하여 클러스터를 구성했습니다.
kubeadm init \
--apiserver-advertise-address=172.16.100.10 \
--pod-network-cidr=100.100.0.0/16 \
--apiserver-cert-extra-sans=0.0.0.0 \
--upload-certs
Calico를 설치하고 싶어서 인용했습니다.공식 웹 사이트설치하세요.
이 custom-resources.yaml
파일에서는 CIDR을 100.100.0.0/16으로 변경했습니다.
# This section includes base Calico installation configuration.
# For more information, see: https://docs.tigera.io/calico/latest/reference/installation/api#operator.tigera.io/v1.Installation
apiVersion: operator.tigera.io/v1
kind: Installation
metadata:
name: default
spec:
# Configures Calico networking.
calicoNetwork:
# Note: The ipPools section cannot be modified post-install.
ipPools:
- blockSize: 26
cidr: 100.100.0.0/16
encapsulation: VXLANCrossSubnet
natOutgoing: Enabled
nodeSelector: all()
---
# This section configures the Calico API server.
# For more information, see: https://docs.tigera.io/calico/latest/reference/installation/api#operator.tigera.io/v1.APIServer
apiVersion: operator.tigera.io/v1
kind: APIServer
metadata:
name: default
spec: {}
Pod 상태를 보니 calico-node Pod가 있어서 0/1 Running
설명과 함께 확인해보니 아래와 같은 내용이 나왔습니다.
error: calico/node is not ready: BIRD is not ready: BGP not established with this error.
클라우드 콘솔에서 방화벽을 사용하여 0.0.0.0/179를 허용했습니다.
어떻게 해결할 수 있나요?
답변1
다음 솔루션이 저에게 효과적이었습니다.
설치 crd를 확인하고 업데이트해 보세요.
nodeAddressAutodetectionV4:
interface: eth*
Calico 노드가 올바른 네트워크 장치에 바인딩되어 있는지 확인하세요.