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
fix: retry image-update writes in Eventually to handle 409 Conflict in CI
The reconciler can modify the AgentDeployment (finalizer add, status write)
between the test's Get and Update, bumping the resourceVersion. The resulting
409 Conflict was flaking the 'does not advance StableVersion during a partial
rollout' test (and would also flake 'updates the child Deployment image').
Fix: wrap the Get+Update block in Eventually so the test transparently retries
on conflict — the standard controller-runtime envtest idiom for this pattern.
0 commit comments