informerCache is a Kubernetes Object cache populated from internal.Informers. informerCache wraps internal.Informers.
| 56 | // informerCache is a Kubernetes Object cache populated from internal.Informers. |
| 57 | // informerCache wraps internal.Informers. |
| 58 | type informerCache struct { |
| 59 | scheme *runtime.Scheme |
| 60 | *internal.Informers |
| 61 | readerFailOnMissingInformer bool |
| 62 | } |
| 63 | |
| 64 | // Get implements Reader. |
| 65 | func (ic *informerCache) Get(ctx context.Context, key client.ObjectKey, out client.Object, opts ...client.GetOption) error { |
nothing calls this directly
no outgoing calls
no test coverage detected