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
What would you like to be added:
Currently, our Instance CRD contains status but we don't have status subresource enabled. That means that we're vulnerable to this behavior described in API conventions:
The PUT and POST verbs on objects MUST ignore the "status" values, to avoid accidentally overwriting the status in read-modify-write scenarios. A /status subresource MUST be provided to enable system components to update statuses of resources they manage.
Otherwise, PUT expects the whole object to be specified. Therefore, if a field is omitted it is assumed that the client wants to clear that field's value. The PUT verb does not accept partial updates.
The text was updated successfully, but these errors were encountered:
What would you like to be added:
Currently, our Instance CRD contains status but we don't have status subresource enabled. That means that we're vulnerable to this behavior described in API conventions:
The text was updated successfully, but these errors were encountered: