From 3a473ff48281fbca22e72a94b7a20d2a7bc2e20d Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Wed, 31 Dec 2025 22:00:09 -0300 Subject: [PATCH] metallb: enable speaker debug logs --- infrastructure/metallb/kustomization.yaml | 1 + .../metallb/patches/speaker-loglevel.yaml | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 infrastructure/metallb/patches/speaker-loglevel.yaml diff --git a/infrastructure/metallb/kustomization.yaml b/infrastructure/metallb/kustomization.yaml index f6df7e6..1a1452c 100644 --- a/infrastructure/metallb/kustomization.yaml +++ b/infrastructure/metallb/kustomization.yaml @@ -7,3 +7,4 @@ resources: - ippool.yaml patchesStrategicMerge: - patches/node-placement.yaml + - patches/speaker-loglevel.yaml diff --git a/infrastructure/metallb/patches/speaker-loglevel.yaml b/infrastructure/metallb/patches/speaker-loglevel.yaml new file mode 100644 index 0000000..26f21f9 --- /dev/null +++ b/infrastructure/metallb/patches/speaker-loglevel.yaml @@ -0,0 +1,14 @@ +# infrastructure/metallb/patches/speaker-loglevel.yaml +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: metallb-speaker + namespace: metallb-system +spec: + template: + spec: + containers: + - name: speaker + args: + - --port=7472 + - --log-level=debug