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 Kubernetes CRD Docs may help with the research about the status field as well as the other resources also used by ownerRefrences
To validate the implementation, deploy a Custom Resource (CR) using the Operator and observe in ArgoCD: with the proposed status updates, you should see resource deployment statuses in the CR; with ownerReferences enabled, the managed resources should appear under the corresponding application in the ArgoCD UI.
Deliverables:
Updated Operator code implementing the above features.
Documentation for:
How to use the new status field for monitoring deployments.
How and when to enable ownerReferences safely.
Acceptance Criteria:
CR status accurately reflects the state of all managed resources.
Resources with ownerReferences are safely handled during lifecycle events (deletion, Operator uninstall, etc.).
Changes are backward compatible and do not disrupt existing deployments.
Code is reviewed and approved by Platform team.
The text was updated successfully, but these errors were encountered:
Objective:
Enable better debugging and monitoring for users by implementing two key improvements in the Operator:
status
of managed resources in the Custom Resource (CR) status field.ownerReferences
on managed resources, with safeguards to prevent unintended deletions.Scope of Work:
ownerReferences
:Kubernetes doc reference for
ownerReferences
The Kubernetes CRD Docs may help with the research about the
status
field as well as the other resources also used byownerRefrences
To validate the implementation, deploy a Custom Resource (CR) using the Operator and observe in ArgoCD: with the proposed
status
updates, you should see resource deployment statuses in the CR; with ownerReferences enabled, the managed resources should appear under the corresponding application in the ArgoCD UI.Deliverables:
status
field for monitoring deployments.ownerReferences
safely.Acceptance Criteria:
The text was updated successfully, but these errors were encountered: