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 issue was that PodTemplateSpec validation was happening early and
setting the PodTemplateValid condition, but then image validation was
also setting the ImageValidated condition without persisting it to
status. This caused the ImageValidated condition to overwrite the
PodTemplateValid condition in subsequent status updates.
The fix ensures that both validation conditions are persisted
immediately after being set:
- PodTemplateSpec validation updates status after setting condition
- Image validation now also updates status after setting condition
This ensures both conditions are present in the MCPServer status and
the invalid-podtemplatespec e2e test will pass.
Signed-off-by: Juan Antonio Osorio <[email protected]>
0 commit comments