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
Is your task related to a problem? Please describe.
Right now, the Kubernetes backend for Applications and AppProjects talk directly to the Kubernetes API server when retrieving (e.g. list or get) resources. However, since we use shared informers for both type of resources, we should make use of its caches instead. This will reduce the number of requests being made to the Kubernetes API significantly.
Describe the solution you'd like
The Get and List methods of the Kubernetes backends for Application and AppProject type resources should use the informer's cache instead of reaching out to the API.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered:
Is your task related to a problem? Please describe.
Right now, the Kubernetes backend for Applications and AppProjects talk directly to the Kubernetes API server when retrieving (e.g. list or get) resources. However, since we use shared informers for both type of resources, we should make use of its caches instead. This will reduce the number of requests being made to the Kubernetes API significantly.
Describe the solution you'd like
The
Get
andList
methods of the Kubernetes backends forApplication
andAppProject
type resources should use the informer's cache instead of reaching out to the API.Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: