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
When Local CP receives a new set of Kuma resources, it should sync it with Local storage.
Process of syncing:
Retrieve all policies from Local CP storage
Remove all that are not in received set
Add all that are in received set but not in Local CP
Compare the existing one by their spec and update if needed.
Do not sync ingress from the same cluster as your local CP
The simpler implementation would be to wipe out all resources from Local CP and replace them with set of received resources. This however has two disadvantages:
more I/O operation on Local Storage
you need to lock the XDS/SDS reconciliation loop for this process.
The text was updated successfully, but these errors were encountered:
Summary
When Local CP receives a new set of Kuma resources, it should sync it with Local storage.
Process of syncing:
Do not sync ingress from the same cluster as your local CP
The simpler implementation would be to wipe out all resources from Local CP and replace them with set of received resources. This however has two disadvantages:
The text was updated successfully, but these errors were encountered: