Merge pull request #123020 from pacoxu/dup-blanks

[nit]kubeadm: remove extra space in log
This commit is contained in:
Kubernetes Prow Robot
2024-01-29 02:01:26 -08:00
committed by GitHub

View File

@@ -694,7 +694,7 @@ func EnsureAdminClusterRoleBindingImpl(ctx context.Context, adminClient, superAd
); err != nil {
lastError = err
if apierrors.IsAlreadyExists(err) {
klog.V(5).Infof("ClusterRoleBinding %s already exists.", kubeadmconstants.ClusterAdminsGroupAndClusterRoleBinding)
klog.V(5).Infof("ClusterRoleBinding %s already exists.", kubeadmconstants.ClusterAdminsGroupAndClusterRoleBinding)
return true, nil
}
// Retry on any other type of error.