add logging before kubelet waiting for cert

during bootstrapping.
This commit is contained in:
Jiahui Feng 2019-12-19 17:11:21 -08:00
parent 3fca0a6e41
commit b2bb3dfb59

View File

@ -352,6 +352,7 @@ func requestNodeCertificate(client certificatesv1beta1.CertificateSigningRequest
ctx, cancel := context.WithTimeout(context.Background(), 3600*time.Second)
defer cancel()
klog.V(2).Infof("Waiting for client certificate to be issued")
return csr.WaitForCertificate(ctx, client, req)
}