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

fix: policy deletion in webhookconfig (#3832)

Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
This commit is contained in:
Charles-Edouard Brétéché 2022-05-07 22:09:19 +02:00 committed by GitHub
parent 3845225db1
commit 306b22a5db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -337,8 +337,9 @@ func (m *webhookConfigManager) sync(key string) error {
func (m *webhookConfigManager) reconcileWebhook(namespace, name string) error {
logger := m.log.WithName("reconcileWebhook").WithValues("namespace", namespace, "policy", name)
policy, err := m.getPolicy(namespace, name)
if err != nil && !apierrors.IsNotFound(err) {
_, err := m.getPolicy(namespace, name)
isDeleted := apierrors.IsNotFound(err)
if err != nil && !isDeleted {
return errors.Wrapf(err, "unable to get policy object %s/%s", namespace, name)
}
@ -356,7 +357,7 @@ func (m *webhookConfigManager) reconcileWebhook(namespace, name string) error {
}
// DELETION of the policy
if policy == nil {
if isDeleted {
return nil
}
}