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:
parent
3845225db1
commit
306b22a5db
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue