Kubernetes client-go: watch.Interface vs. cache.NewInformer vs. cache.NewSharedIndexInformer?
These methods differ in the level of abstraction. If a higher level abstraction fits your need, you should use it, as many lower level problems is solved for you. Informers is a higher level of abstraction than watch that also include listers. In most use cases you should use any kind of Informer instead of … Read more