Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewNoneEndpointReconciler (0.28 sec)

  1. pkg/controlplane/reconcilers/none.go

    	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.
    func NewNoneEndpointReconciler() EndpointReconciler {
    	return &noneEndpointReconciler{}
    }
    
    // ReconcileEndpoints noop reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 11:45:48 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. pkg/controlplane/instance.go

    	return reconcilers.NewMasterCountEndpointReconciler(c.Extra.MasterCount, endpointsAdapter)
    }
    
    func (c *Config) createNoneReconciler() reconcilers.EndpointReconciler {
    	return reconcilers.NewNoneEndpointReconciler()
    }
    
    func (c *Config) createLeaseReconciler() reconcilers.EndpointReconciler {
    	endpointClient := corev1client.NewForConfigOrDie(c.ControlPlane.Generic.LoopbackClientConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top