From 186a67d102a46deb4f4c9953150d699bef02a208 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 7 Jan 2025 17:32:22 +0100 Subject: [PATCH] service-mesh: set envoy log level to debug Signed-off-by: Paul Meyer --- internal/kuberesource/parts.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/kuberesource/parts.go b/internal/kuberesource/parts.go index 1eba2a8556..f943366883 100644 --- a/internal/kuberesource/parts.go +++ b/internal/kuberesource/parts.go @@ -471,6 +471,9 @@ func ServiceMeshProxy() *applycorev1.ContainerApplyConfiguration { WithFailureThreshold(5). WithTCPSocket(TCPSocketAction(). WithPort(intstr.FromInt(15006))), + ). + WithArgs( + "-l", "debug", ) }