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
The DRPC function updateAndSetOwner() calls the client Update() function multiple times within the same reconciliation. This causes resource version conflict and delays of the reconciliation execution.
A potential solution is to update the Placement and DRPC only once if possible. In other words;
Placement: Call Update() after annotation and finalizer are added
DRPC: Call Update() after finalizer and DRPC owner are added.
The DRPC function
updateAndSetOwner()
calls the clientUpdate()
function multiple times within the same reconciliation. This causes resource version conflict and delays of the reconciliation execution.A potential solution is to update the
Placement
andDRPC
only once if possible. In other words;Update()
after annotation and finalizer are addedUpdate()
after finalizer and DRPC owner are added.This issue is in response to this comment
The text was updated successfully, but these errors were encountered: