Skip to content

Commit

Permalink
fix: Avoid panic when inventory update errors (#4055)
Browse files Browse the repository at this point in the history
Also avoid losing modifications due to mutating webhooks.

Signed-off-by: Karl Isenberg <karlisenberg@google.com>
  • Loading branch information
karlkfi committed Oct 9, 2023
1 parent 4c4cf98 commit fc62243
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions pkg/live/inventoryrg.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,15 +292,36 @@ func (icm *InventoryResourceGroup) ApplyWithPrune(dc dynamic.Interface, mapper m
}

// Update the cluster inventory object.
// Since the ResourceGroup CRD specifies the status as a sub-resource, this
// will not update the status.
appliedObj, err := namespacedClient.Update(context.TODO(), invInfo, metav1.UpdateOptions{})
if err != nil {
return err
}

// Update status.
// Update status, if status policy allows it.
// To avoid losing modifications performed by mutating webhooks, copy the
// status from the desired state to the latest state after the previous update.
// This also ensures that the ResourceVersion matches the latest state, to
// avoid the update being rejected by the server.
if statusPolicy == inventory.StatusPolicyAll {
invInfo.SetResourceVersion(appliedObj.GetResourceVersion())
_, err = namespacedClient.UpdateStatus(context.TODO(), invInfo, metav1.UpdateOptions{})
status, found, err := unstructured.NestedMap(invInfo.UnstructuredContent(), "status")
if err != nil {
return err
}
if found {
err = unstructured.SetNestedField(appliedObj.UnstructuredContent(), status, "status")
if err != nil {
return err
}
_, err = namespacedClient.UpdateStatus(context.TODO(), appliedObj, metav1.UpdateOptions{})
if err != nil {
return err
}
}
}

return err
return nil
}

func (icm *InventoryResourceGroup) getNamespacedClient(dc dynamic.Interface, mapper meta.RESTMapper) (*unstructured.Unstructured, dynamic.ResourceInterface, error) {
Expand Down

0 comments on commit fc62243

Please sign in to comment.