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.3
helm show values metallb-0.14.3.tgz > metallb-0.14.3.yaml
metallb-values.yaml
controller:
enabled: true
labels: {}

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