Files
2026-05-06 16:34:18 -05:00

53 lines
911 B
YAML

apiVersion: v1
kind: Namespace
metadata:
name: metallb
---
apiVersion: source.toolkit.fluxcd.io/v1
kind: HelmRepository
metadata:
name: metallb
namespace: metallb
spec:
interval: 10m
url: https://metallb.github.io/metallb
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: metallb
namespace: metallb
spec:
interval: 10m
chart:
spec:
chart: metallb
version: "0.15.3"
sourceRef:
kind: HelmRepository
name: metallb
namespace: metallb
install:
createNamespace: false
values:
controller:
logLevel: info
speaker:
logLevel: info
---
apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: single-ip-pool
namespace: metallb
spec:
addresses:
- 192.168.100.254/32
---
apiVersion: metallb.io/v1beta1
kind: L2Advertisement
metadata:
name: single-ip-adv
namespace: metallb
spec: {}