Merge pull request #112353 from dgrisonnet/update-max-sync-backoff

Update endpointslice controller maximum sync backoff delay to match expected sequence of delays
This commit is contained in:
Kubernetes Prow Robot
2022-09-14 08:55:00 -07:00
committed by GitHub

View File

@@ -69,7 +69,7 @@ const (
// defaultSyncBackOff is the default backoff period for syncService calls.
defaultSyncBackOff = 1 * time.Second
// maxSyncBackOff is the max backoff period for syncService calls.
maxSyncBackOff = 100 * time.Second
maxSyncBackOff = 1000 * time.Second
// controllerName is a unique value used with LabelManagedBy to indicated
// the component managing an EndpointSlice.