Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 155 for Reconciled (0.17 sec)

  1. pkg/kube/controllers/example_test.go

    	// * errors can be retried
    	c.queue = controllers.NewQueue("pods",
    		controllers.WithReconciler(c.Reconcile),
    		controllers.WithMaxAttempts(5))
    
    	// Register a handler for pods. For each pod event, we will add it to the queue.
    	c.pods.AddEventHandler(controllers.ObjectHandler(c.queue.AddObject))
    	return c
    }
    
    // Reconcile is the main work function for our controller. As input, we get a name of an object; with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler.go

    limitations under the License.
    */
    
    package reconciler
    
    import (
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    )
    
    func (rc *reconciler) Run(stopCh <-chan struct{}) {
    	rc.reconstructVolumes()
    	klog.InfoS("Reconciler: start to sync state")
    	wait.Until(rc.reconcile, rc.loopSleepDuration, stopCh)
    }
    
    func (rc *reconciler) reconcile() {
    	readyToUnmount := rc.readyToUnmount()
    	if readyToUnmount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/reconciler/reconciler.go

    	handlers            map[string]cache.PluginHandler
    	sync.RWMutex
    }
    
    var _ Reconciler = &reconciler{}
    
    func (rc *reconciler) Run(stopCh <-chan struct{}) {
    	wait.Until(func() {
    		rc.reconcile()
    	},
    		rc.loopSleepDuration,
    		stopCh)
    }
    
    func (rc *reconciler) AddHandler(pluginType string, pluginHandler cache.PluginHandler) {
    	rc.Lock()
    	defer rc.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  4. pkg/controlplane/reconcilers/none.go

    limitations under the License.
    */
    
    // Package reconcilers a noop based reconciler
    package reconcilers
    
    import (
    	"net"
    
    	corev1 "k8s.io/api/core/v1"
    )
    
    // NoneEndpointReconciler allows for the endpoint reconciler to be disabled
    type noneEndpointReconciler struct{}
    
    // NewNoneEndpointReconciler creates a new EndpointReconciler that reconciles based on a
    // nothing. It is a no-op.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 11:45:48 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    		return
    	}
    
    	fs.BoolVar(&o.DisableAttachDetachReconcilerSync, "disable-attach-detach-reconcile-sync", false, "Disable volume attach detach reconciler sync. Disabling this may cause volumes to be mismatched with pods. Use wisely.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/config/types.go

    type AttachDetachControllerConfiguration struct {
    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/controlplane/reconcilers/reconcilers.go

    	Destroy()
    }
    
    // Type the reconciler type
    type Type string
    
    const (
    	// MasterCountReconcilerType will select the original reconciler
    	MasterCountReconcilerType Type = "master-count"
    	// LeaseEndpointReconcilerType will select a storage based reconciler
    	LeaseEndpointReconcilerType Type = "lease"
    	// NoneEndpointReconcilerType will turn off the endpoint reconciler
    	NoneEndpointReconcilerType Type = "none"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 13:49:31 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    	informer Informer[T],
    	reconciler func(namepace, name string, newObj T) error,
    	options ControllerOptions,
    ) Controller[T] {
    	if options.Workers == 0 {
    		options.Workers = 2
    	}
    
    	if len(options.Name) == 0 {
    		options.Name = fmt.Sprintf("%T-controller", *new(T))
    	}
    
    	c := &controller[T]{
    		options:    options,
    		informer:   informer,
    		reconciler: reconciler,
    		queue:      nil,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/plugin_manager.go

    	// periodic loop to populate the desiredStateOfWorld.
    	desiredStateOfWorldPopulator *pluginwatcher.Watcher
    
    	// reconciler runs an asynchronous periodic loop to reconcile the
    	// desiredStateOfWorld with the actualStateOfWorld by triggering register
    	// and unregister operations using the operationExecutor.
    	reconciler reconciler.Reconciler
    
    	// actualStateOfWorld is a data structure containing the actual state of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    limitations under the License.
    */
    
    package reconciler
    
    import (
    	"context"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    )
    
    // readyToUnmount returns true when reconciler can start unmounting volumes.
    func (rc *reconciler) readyToUnmount() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top