Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for Reconciled (0.26 sec)

  1. 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)
  2. 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)
  3. 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