type Reconciler …
func NewReconciler(
operationExecutor operationexecutor.OperationExecutor,
loopSleepDuration time.Duration,
desiredStateOfWorld cache.DesiredStateOfWorld,
actualStateOfWorld cache.ActualStateOfWorld) Reconciler { … }
type reconciler …
var _ …
func (rc *reconciler) Run(stopCh <-chan struct{ … }
func (rc *reconciler) AddHandler(pluginType string, pluginHandler cache.PluginHandler) { … }
func (rc *reconciler) getHandlers() map[string]cache.PluginHandler { … }
func (rc *reconciler) reconcile() { … }