From 54fc55f47a760c8d99e2639a779af8c3c1bbc5ae Mon Sep 17 00:00:00 2001 From: Shuting Zhao Date: Tue, 20 Aug 2019 10:08:00 -0700 Subject: [PATCH] add debug log --- pkg/policy/controller.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/policy/controller.go b/pkg/policy/controller.go index 7438c4f2c5..6e816621cb 100644 --- a/pkg/policy/controller.go +++ b/pkg/policy/controller.go @@ -436,12 +436,14 @@ func (pc *PolicyController) handleWebhookRegistration(emptyPolicy bool) error { if emptyPolicy { // deregister webhookconfigurations it it exists if list != nil { + glog.V(3).Infoln("No policy found in the cluster, deregistering webhook") pc.webhookRegistrationClient.DeregisterMutatingWebhook() } return nil } if list == nil { + glog.V(3).Infoln("Found policy without mutatingwebhook, registering webhook") pc.webhookRegistrationClient.RegisterMutatingWebhook() }