You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Check for certificate expiry information in the bootstrap config.
349
352
annotations=bootstrapConfig.GetAnnotations()
350
353
ifexpiry, ok:=annotations[clusterv1.MachineCertificatesExpiryDateAnnotation]; ok {
354
+
expiryInfoFound=true
351
355
expiryTime, err:=time.Parse(time.RFC3339, expiry)
352
356
iferr!=nil {
353
357
return ctrl.Result{}, errors.Wrapf(err, "failed to reconcile certificates expiry: failed to parse expiry date from annotation on %s", klog.KObj(bootstrapConfig))
0 commit comments