Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for Reconciled (0.16 sec)

  1. tests/integration/pilot/analysis/analysis_test.go

    	}
    
    	statusConds := x.Status.Conditions
    
    	// todo for some reason when a WorkloadEntry is created a "Reconciled" Condition isn't added.
    	for i, cond := range x.Status.Conditions {
    		// remove reconciled conditions for when WorkloadEntry starts initializing
    		// with a reconciled status.
    		if cond.Type == "Reconciled" {
    			statusConds = append(statusConds[:i], statusConds[i+1:]...)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/interface.go

    	Run(ctx context.Context) error
    
    	// Retrieves the informer used to back this controller
    	Informer() Informer[T]
    
    	// Returns true if the informer cache has synced, and all the objects from
    	// the initial list have been reconciled at least once.
    	HasSynced() bool
    }
    
    type NamespacedLister[T any] interface {
    	// List lists all ValidationRuleSets in the indexer for a given namespace.
    	// Objects returned here must be treated as read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/peer.go

    	config, err := storageFactory.NewConfig(api.Resource("apiServerPeerIPInfo"))
    	if err != nil {
    		return nil, fmt.Errorf("error creating storage factory config: %w", err)
    	}
    	reconciler, err := reconcilers.NewPeerEndpointLeaseReconciler(config, "/peerserverleases/", ttl)
    	return reconciler, err
    }
    
    // utility function to get the apiserver address that is used by peer apiservers to proxy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 08:15:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/kubernetesservice/controller.go

    func (c *Controller) UpdateKubernetesService(reconcile bool) error {
    	// Update service & endpoint records.
    	servicePorts, serviceType := createPortAndServiceSpec(c.ServicePort, c.PublicServicePort, c.KubernetesServiceNodePort, "https")
    	if err := c.CreateOrUpdateMasterServiceIfNeeded(kubernetesServiceName, c.ServiceIP, servicePorts, serviceType, reconcile); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/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)
  10. pkg/controller/validatingadmissionpolicystatus/controller.go

    				return nil
    			}
    			return err
    		}
    		return c.reconcile(ctx, policy)
    	}()
    
    	if err == nil {
    		c.policyQueue.Forget(key)
    		return true
    	}
    
    	utilruntime.HandleError(err)
    	c.policyQueue.AddRateLimited(key)
    
    	return true
    }
    
    func (c *Controller) reconcile(ctx context.Context, policy *v1.ValidatingAdmissionPolicy) error {
    	if policy == nil {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top