Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 143 for Reconciled (0.18 sec)

  1. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    		if c.NotAfter.After(fiveMinutesAgo) {
    			validCerts = append(validCerts, c)
    		}
    	}
    
    	return validCerts
    }
    
    // Enqueue a method to allow separate control loops to cause the controller to trigger and reconcile content.
    func (c *Controller) Enqueue() {
    	c.queue.Add(keyFn())
    }
    
    // Run the controller until stopped.
    func (c *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	asw.Lock()
    	defer asw.Unlock()
    
    	volumeObj, volumeExists := asw.attachedVolumes[volumeName]
    	if !volumeExists {
    		return
    	}
    	if volumeObj.deviceMountState != operationexecutor.DeviceMountUncertain {
    		// Reconciler must have updated volume state, i.e. when a pod uses the volume and
    		// succeeded mounting the volume. Such update has fixed the device path.
    		return
    	}
    
    	volumeObj.devicePath = devicePath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    		defer timeoutCancel()
    
    		for _, object := range objects {
    			if err := p.WaitForReconcile(timeoutCtx, object); err != nil {
    				return fmt.Errorf("error waiting for reconcile of %v: %v", object, err)
    			}
    		}
    	}
    	return nil
    }
    
    // Depending upon object type, waits afterward until the object is synced
    // by the policy source. Note that policies that are not bound are skipped,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/range_allocator.go

    			// we don't see the Update with DeletionTimestamp != 0.
    			// TODO: instead of executing the operation directly in the handler, build a small cache with key node.Name
    			// and value PodCIDRs use ReleaseCIDR on the reconcile loop so we can retry on `ReleaseCIDR` failures.
    			if err := ra.ReleaseCIDR(logger, obj.(*v1.Node)); err != nil {
    				utilruntime.HandleError(fmt.Errorf("error while processing CIDR Release: %w", err))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    kind: ConfigMap
    metadata:
      labels:
        app: sidecar-injector
        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set.go

    	logger.V(4).Info("Pod deleted.", "pod", klog.KObj(pod), "caller", utilruntime.GetCaller())
    	ssc.enqueueStatefulSet(set)
    }
    
    // getPodsForStatefulSet returns the Pods that a given StatefulSet should manage.
    // It also reconciles ControllerRef by adopting/orphaning.
    //
    // NOTE: Returned Pods are pointers to objects from the cache.
    // If you need to modify one, you need to copy it first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    kind: ConfigMap
    metadata:
      labels:
        app: sidecar-injector
        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector-canary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    kind: ConfigMap
    metadata:
      labels:
        app: sidecar-injector
        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    kind: ConfigMap
    metadata:
      labels:
        app: sidecar-injector
        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		podName, expectedVolumeName, "" /* SELinuxContext */); !podExistsInVolume {
    		t.Fatalf(
    			"DSW PodExistsInVolume returned incorrect value. Expected: <true> Actual: <%v>",
    			podExistsInVolume)
    	}
    
    	// reconcile with actual state so that volume is added into the actual state
    	// desired state populator now can successfully delete the pod and volume
    	reconcileASW(fakeASW, dswp.desiredStateOfWorld, t)
    	dswp.findAndRemoveDeletedPods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top