mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Only queue one retry if webhook update fails (#3353)
Queueing two retries can lead to exponential growth. Adding a delay before the retry should reduce the number of failed attempts to update webhooks. Signed-off-by: Thomas Hartland <thomas.hartland@diamond.ac.uk> Co-authored-by: Prateek Pandey <prateekpandey14@gmail.com> Co-authored-by: shuting <shuting@nirmata.com>
This commit is contained in:
parent
9ac35f9698
commit
36f532840d
1 changed files with 11 additions and 2 deletions
|
@ -236,14 +236,23 @@ func (wrc *Register) UpdateWebhookConfigurations(configHandler config.Interface)
|
|||
}
|
||||
}
|
||||
|
||||
retry := false
|
||||
|
||||
if err := wrc.updateResourceMutatingWebhookConfiguration(nsSelector); err != nil {
|
||||
logger.Error(err, "unable to update mutatingWebhookConfigurations", "name", getResourceMutatingWebhookConfigName(wrc.serverIP))
|
||||
go func() { wrc.UpdateWebhookChan <- true }()
|
||||
retry = true
|
||||
}
|
||||
|
||||
if err := wrc.updateResourceValidatingWebhookConfiguration(nsSelector); err != nil {
|
||||
logger.Error(err, "unable to update validatingWebhookConfigurations", "name", getResourceValidatingWebhookConfigName(wrc.serverIP))
|
||||
go func() { wrc.UpdateWebhookChan <- true }()
|
||||
retry = true
|
||||
}
|
||||
|
||||
if retry {
|
||||
go func() {
|
||||
time.Sleep(1 * time.Second)
|
||||
wrc.UpdateWebhookChan <- true
|
||||
}()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue