Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Reconciled (0.19 sec)

  1. pkg/volume/testing/testing.go

    	if exist {
    		if nodeName == UncertainAttachNode {
    			return "/dev/vdb-test", nil
    		}
    		// even if volume was previously attached to time out, we need to keep returning error
    		// so as reconciler can not confirm this volume as attached.
    		if nodeName == TimeoutAttachNode {
    			return "", fmt.Errorf("timed out to attach volume %q to node %q", volumeName, nodeName)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    	"k8s.io/utils/pointer"
    )
    
    // Most of the tests related to EndpointSlice allocation can be found in reconciler_test.go
    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceController struct {
    	*Controller
    	endpointSliceStore cache.Store
    	nodeStore          cache.Store
    	podStore           cache.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    	testPod := getTestPod()
    	client := fake.NewSimpleClientset(testPod)
    	syncer := newTestManager(client)
    	syncer.SetPodStatus(testPod, getRandomPodStatus())
    	t.Logf("Call syncBatch directly to test reconcile")
    	syncer.syncBatch(true) // The apiStatusVersions should be set now
    	client.ClearActions()
    
    	podStatus, ok := syncer.GetPodStatus(testPod.UID)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    			return err
    		}
    	}
    	return nil
    }
    
    // getPodsForJob returns the set of pods that this Job should manage.
    // It also reconciles ControllerRef by adopting/orphaning, adding tracking
    // finalizers.
    // Note that the returned Pods are pointers into the cache.
    func (jm *Controller) getPodsForJob(ctx context.Context, j *batch.Job) ([]*v1.Pod, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    func (ps *PushContext) initKubernetesGateways(env *Environment) error {
    	if env.GatewayAPIController != nil {
    		ps.GatewayAPIController = env.GatewayAPIController
    		return env.GatewayAPIController.Reconcile(ps)
    	}
    	return nil
    }
    
    // ReferenceAllowed determines if a given resource (of type `kind` and name `resourceName`) can be
    // accessed by `namespace`, based of specific reference policies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top