Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for Reconciled (0.14 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    	env := &model.Environment{}
    	d := NewDeploymentController(c, "", env, testInjectionConfig(t, ""), func(fn func()) {}, tw, "")
    	reconciles := atomic.NewInt32(0)
    	wantReconcile := int32(0)
    	expectReconciled := func() {
    		t.Helper()
    		wantReconcile++
    		assert.EventuallyEqual(t, reconciles.Load, wantReconcile, retry.Timeout(time.Second*5), retry.Message("no reconciliation"))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	attacherDetacher operationexecutor.OperationExecutor
    
    	// reconciler is used to run an asynchronous periodic loop to reconcile the
    	// desiredStateOfWorld with the actualStateOfWorld by triggering attach
    	// detach operations using the attacherDetacher.
    	reconciler reconciler.Reconciler
    
    	// nodeStatusUpdater is used to update node status with the list of attached
    	// volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    	baseKey := "/" + uuid.New().String() + "/peer-testleases/"
    	leaseTime := 1 * time.Minute
    	reconciler, err := reconcilers.NewPeerEndpointLeaseReconciler(&config, baseKey, leaseTime)
    	if err != nil {
    		t.Fatalf("Error creating storage: %v", err)
    	}
    	return reconciler
    }
    
    func newHandlerChain(t *testing.T, handler http.Handler, reconciler reconcilers.PeerEndpointLeaseReconciler, informerFinishedSync bool, svdata FakeSVMapData) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. cluster/addons/kube-network-policies/kube-network-policies-rbac.yaml

    kind: ClusterRole
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: system:network-policies
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources:
          - pods
          - nodes
          - namespaces
        verbs:
          - get
          - watch
          - list
      # Watch for changes to Kubernetes NetworkPolicies.
      - apiGroups: ["networking.k8s.io"]
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 10:01:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top