1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

register resource webhook in policy control loop

This commit is contained in:
Shuting Zhao 2020-01-02 20:25:30 -08:00
parent e466a8e1df
commit 0c9053d50d

View file

@ -228,11 +228,6 @@ func (pc *PolicyController) Run(workers int, stopCh <-chan struct{}) {
return
}
// if policies exist before Kyverno get created, resource webhook configuration
// could not be registered as clusterpolicy.spec.background=false by default
// the policy controller would starts only when the first incoming policy is queued
pc.registerResourceWebhookConfiguration()
for i := 0; i < workers; i++ {
go wait.Until(pc.worker, time.Second, stopCh)
}
@ -250,6 +245,11 @@ func (pc *PolicyController) worker() {
}
func (pc *PolicyController) processNextWorkItem() bool {
// if policies exist before Kyverno get created, resource webhook configuration
// could not be registered as clusterpolicy.spec.background=false by default
// the policy controller would starts only when the first incoming policy is queued
pc.registerResourceWebhookConfiguration()
key, quit := pc.queue.Get()
if quit {
return false