fix(clustertool): correct csr approver logging during bootstrap

This commit is contained in:
Kjeld Schouten
2024-10-24 22:18:00 +02:00
parent e1539c682d
commit e4c1f43c64
+1 -1
View File
@@ -73,7 +73,7 @@ func ApprovePendingCertificates(clientset *kubernetes.Clientset, stopCh <-chan s
if err != nil {
log.Info().Msgf("Error approving CSR %s: %v\n", csr.Name, err)
} else {
log.Info().Msgf("Approved CSR", csr.Name)
log.Info().Msgf("Approved CSR: %s", csr.Name)
}
}
}