From e594cefd1779c7bceb22cf10dba278efec804c30 Mon Sep 17 00:00:00 2001 From: Andrew Lavery Date: Wed, 16 Sep 2020 17:51:59 -0700 Subject: [PATCH] actually follow the logs of the pod that we need the end of --- kotsadm/pkg/kurl/join_cert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotsadm/pkg/kurl/join_cert.go b/kotsadm/pkg/kurl/join_cert.go index 6546756a99..32d9e89a7f 100644 --- a/kotsadm/pkg/kurl/join_cert.go +++ b/kotsadm/pkg/kurl/join_cert.go @@ -70,7 +70,7 @@ func createCertAndKey(ctx context.Context, client kubernetes.Interface, namespac func getCertGenLogs(ctx context.Context, client kubernetes.Interface, pod *corev1.Pod) ([]byte, error) { podLogOpts := corev1.PodLogOptions{ - Follow: false, + Follow: true, Container: pod.Spec.Containers[0].Name, }