Patching a list in a CRD

Hi,

I have several containers pushing concurrently updates to the same CRD object. Something like: statuses: [{"name": "foo", "status": "ok"},{"name":"bar", "status":"ko"}] , with the “foo” and “bar” containers updating their status field.

I’d use a strategic merge patch for that (with strategicMergeKey = name), but they aren’t available for CRDs. How should I deisgn that?