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
⚠️ Add ability for the delegating client to avoid caching objects
A long standing issue in controller runtime, the delegating client is
the default client that the manager creates. Whenever a user calls
Get/List on a typed object, the internal cache spins up an informer and
start watching *all* objects for that group-version-kind.
This change introduces the ability for the delegating client to take
a list of objects that should always hit the live api-server, and bypass
the cache.
We also offer the ability to build a manager.NewClientFunc with a new
builder that exposes the ability to mark which objects we want to be
uncached.
Signed-off-by: Vince Prignano <[email protected]>
0 commit comments