Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document Antrea interoperability with MetalLB #322

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/metallb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Deploying metallb with Antrea

MetalLB is a load-balancer implementation for bare metal Kubernetes clusters, using standard routing protocols.
As Antrea does not implement a LoadBalancer service, it can be complemented with MetalLB to provide that functionality.

To install MetalLB, apply the following:

```bash
kubectl apply -f https://raw.githubusercontent.com/google/metallb/v0.8.3/manifests/metallb.yaml
```
which deploys MetalLB controller service and speaker daemonset.

MetalLB requires additional configuration and allocation of external IP addresses.
For further information see [MetalLB configuration and installation guide](https://metallb.universe.tf/configuration/).