Skip to content

Commit

Permalink
Increase initial healthcheck start (gitpod-io#19596)
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf authored Apr 3, 2024
1 parent a785b53 commit f12de25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions components/node-labeler/cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ func (r *PodReconciler) Reconcile(ctx context.Context, req reconcile.Request) (r
log.WithError(err).Error("checking registry-facade")
return reconcile.Result{RequeueAfter: defaultRequeueTime}, nil
}

time.Sleep(1 * time.Second)
}

err = updateLabel(labelToUpdate, true, nodeName, r)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func daemonset(ctx *common.RenderContext) ([]runtime.Object, error) {
Port: intstr.IntOrString{IntVal: ReadinessPort},
},
},
InitialDelaySeconds: 5,
InitialDelaySeconds: 10,
PeriodSeconds: 5,
TimeoutSeconds: 2,
SuccessThreshold: 2,
Expand Down

0 comments on commit f12de25

Please sign in to comment.