You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfmt.Errorf("while updating pvc during owner ref reconciliation: %w", err)
}
}
we do not check whether a update of the PVC is actually necessary. We should use a similar approach here as in other cases whereby we compare the current state with the desired state and only issue the update if they differ.
This should significantly reduce the number updates on PVCs the operator does.
The text was updated successfully, but these errors were encountered:
Related to #5450
in
cloud-on-k8s/pkg/controller/elasticsearch/driver/pvc_owner.go
Lines 34 to 47 in 9be005d
we do not check whether a update of the PVC is actually necessary. We should use a similar approach here as in other cases whereby we compare the current state with the desired state and only issue the update if they differ.
This should significantly reduce the number updates on PVCs the operator does.
The text was updated successfully, but these errors were encountered: