From 1581eaa034ce6262a8d11532128a8fc7a3c2d323 Mon Sep 17 00:00:00 2001 From: George Jenkins Date: Thu, 9 Oct 2025 10:26:24 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: George Jenkins --- pkg/kube/interface.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kube/interface.go b/pkg/kube/interface.go index 246c9757f..cc934ae1e 100644 --- a/pkg/kube/interface.go +++ b/pkg/kube/interface.go @@ -59,10 +59,10 @@ type Interface interface { // Get Waiter gets the Kube.Waiter GetWaiter(ws WaitStrategy) (Waiter, error) - // GetPodList list all pods that match the specified listOptions + // GetPodList lists all pods that match the specified listOptions GetPodList(namespace string, listOptions metav1.ListOptions) (*v1.PodList, error) - // OutputContainerLogsForPodList output the logs for a pod list + // OutputContainerLogsForPodList outputs the logs for a pod list OutputContainerLogsForPodList(podList *v1.PodList, namespace string, writerFunc func(namespace, pod, container string) io.Writer) error // BuildTable creates a resource list from a Reader. This differs from