Skip to main content

MetalLB


설치

warning

kube-proxy를 IPVS 모드로 사용하는 경우 kube-proxy ConfigMap의 .ipvs.strictARPtrue로 설정해야 합니다.

helm repo add metallb https://metallb.github.io/metallb
helm repo update metallb \
&& helm search repo metallb/metallb -l | head -n 10
helm pull metallb/metallb --version 0.14.4
helm show values metallb/metallb --version 0.14.4 > metallb-0.14.4.yaml
metallb-values.yaml
controller:
enabled: true

labels: {}

speaker:
enabled: true

ignoreExcludeLB: true

labels: {}
helm template metallb metallb-0.14.4.tgz \
-n metallb-system \
-f metallb-values.yaml \
> metallb.yaml
helm upgrade metallb metallb-0.14.4.tgz \
--install \
--history-max 5 \
-n metallb-system \
-f metallb-values.yaml