# Loadbalancer Lets install a loadbalancer (MetalLB) on a Talos Linux cluster. ## MetalLB ```shell # add repo and install helm repo add metallb https://metallb.github.io/metallb helm repo update helm install metallb metallb/metallb -n metallb-system --create-namespace --wait # fix pod security for speaker pods kubectl label namespace metallb-system pod-security.kubernetes.io/enforce=privileged kubectl label namespace metallb-system pod-security.kubernetes.io/audit=privileged kubectl label namespace metallb-system pod-security.kubernetes.io/warn=privileged # restart speaker daemonset kubectl rollout restart daemonset/metallb-speaker -n metallb-system ``` ```shell # configure metallb cat <