14 lines
371 B
YAML
14 lines
371 B
YAML
# MetalLB IP Address Pool
|
|
# Replace <YOUR_IP_RANGE> with a range of unused IPs on your LAN.
|
|
# These IPs will be assigned to LoadBalancer services (e.g. Traefik).
|
|
# Example: 192.168.1.200-192.168.1.210
|
|
apiVersion: metallb.io/v1beta1
|
|
kind: IPAddressPool
|
|
metadata:
|
|
name: metallb-pool
|
|
namespace: infrastructure
|
|
spec:
|
|
addresses:
|
|
- <YOUR_IP_RANGE>
|
|
autoAssign: true
|