Skip to content

Commit cadd517

Browse files
authored
Merge pull request kubernetes#88783 from neolit123/1.18-fix-kubectl-auth-verbosity
client-go: use klog.V(3) for the cert-rotation controller start/stop
2 parents 0535520 + b2677b1 commit cadd517

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

staging/src/k8s.io/client-go/transport/cert_rotation.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ func (c *dynamicClientCert) Run(stopCh <-chan struct{}) {
134134
defer utilruntime.HandleCrash()
135135
defer c.queue.ShutDown()
136136

137-
klog.Infof("Starting client certificate rotation controller")
138-
defer klog.Infof("Shutting down client certificate rotation controller")
137+
klog.V(3).Infof("Starting client certificate rotation controller")
138+
defer klog.V(3).Infof("Shutting down client certificate rotation controller")
139139

140140
go wait.Until(c.runWorker, time.Second, stopCh)
141141

0 commit comments

Comments
 (0)