Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for Reconciled (0.13 sec)

  1. 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)
  2. operator/cmd/mesh/manifest_shared_test.go

    		return nil, err
    	}
    
    	iop.Spec.InstallPackagePath = string(chartSource)
    
    	reconciler, err := helmreconciler.NewHelmReconciler(testClient, c, iop, opts)
    	if err != nil {
    		return nil, err
    	}
    	if err := fakeInstallOperator(reconciler, chartSource); err != nil {
    		return nil, err
    	}
    
    	if _, err := reconciler.Reconcile(); err != nil {
    		return nil, err
    	}
    
    	return NewObjectSet(getAllIstioObjects()), nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	nodesSynced cache.InformerSynced
    
    	// reconciler is an util used to reconcile EndpointSlice changes.
    	reconciler *endpointslicerec.Reconciler
    
    	// triggerTimeTracker is an util used to compute and export the
    	// EndpointsLastChangeTriggerTime annotation.
    	triggerTimeTracker *endpointsliceutil.TriggerTimeTracker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    		klog.Infof("Shutting down peer endpoint lease reconciler")
    		// stop reconciliation
    		c.reconciler.StopReconciling()
    
    		// Ensure that there will be no race condition with the ReconcileEndpointLeases.
    		if err := c.reconciler.RemoveLease(c.serverId); err != nil {
    			klog.Errorf("Unable to remove peer endpoint leases: %v", err)
    		}
    		c.reconciler.Destroy()
    	}()
    
    	select {
    	case <-finishedReconciling:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    )
    
    // From now on, the HPA controller does have history in it (scaleUpEvents, scaleDownEvents)
    // Hence the second HPA controller reconcile cycle might return different result (comparing with the first run).
    // Current test infrastructure has a race condition, when several reconcile cycles will be performed
    //    while it should be stopped right after the first one. And the second will raise an exception
    //    because of different result.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	// synced at least once. Added as a member to the struct to allow injection
    	// for testing.
    	servicesSynced cache.InformerSynced
    
    	// reconciler is an util used to reconcile EndpointSlice changes.
    	reconciler *reconciler
    
    	// Endpoints that need to be updated. A channel is inappropriate here,
    	// because it allows Endpoints with lots of addresses to be serviced much
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. pkg/controlplane/reconcilers/instancecount.go

    */
    
    // Package reconcilers master count based reconciler
    package reconcilers
    
    import (
    	"net"
    	"sync"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/util/retry"
    	"k8s.io/klog/v2"
    	endpointsv1 "k8s.io/kubernetes/pkg/api/v1/endpoints"
    )
    
    // masterCountEndpointReconciler reconciles endpoints based on a specified expected number of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	assert.False(t, reconciler.StatesHasBeenSynced())
    
    	reconciler.volumesNeedUpdateFromNodeStatus = append(reconciler.volumesNeedUpdateFromNodeStatus, volumeName1, volumeName2)
    	// Act - run reconcile loop just once.
    	// "volumesNeedUpdateFromNodeStatus" is not empty, so no unmount will be triggered.
    	reconciler.reconcile()
    
    	// Assert
    	assert.True(t, reconciler.StatesHasBeenSynced())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/volume_manager.go

    	reconciler reconciler.Reconciler
    
    	// desiredStateOfWorldPopulator runs an asynchronous periodic loop to
    	// populate the desiredStateOfWorld using the kubelet PodManager.
    	desiredStateOfWorldPopulator populator.DesiredStateOfWorldPopulator
    
    	// csiMigratedPluginManager keeps track of CSI migration status of plugins
    	csiMigratedPluginManager csimigration.PluginManager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/namespacecontroller.go

    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms
    	maxRetries = 5
    )
    
    var configMapLabel = map[string]string{"istio.io/config": "true"}
    
    // NamespaceController manages reconciles a configmap in each namespace with a desired set of data.
    type NamespaceController struct {
    	caBundleWatcher *keycertbundle.Watcher
    
    	queue controllers.Queue
    
    	namespaces kclient.Client[*v1.Namespace]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top