Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for admission (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// Using the rest.ValidateAllObjectFunc because the request is an UPDATE request and has already passed the admission for the UPDATE verb.
    	if err := e.Storage.Delete(ctx, key, out, preconditions, rest.ValidateAllObjectFunc, dryrun.IsDryRun(options.DryRun), nil); err != nil {
    		// Deletion is racy, i.e., there could be multiple update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    
    	// TODO: Handle overlapping controllers better. Either disallow them at admission time or
    	// deterministically avoid syncing controllers that fight over pods. Currently, we only
    	// ensure that the same controller is synced for a given pod. When we periodically relist
    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. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				t.Logf("stale object (rv=%s), expected rv=%s", pod.ResourceVersion, updatedPod2.ResourceVersion)
    			}
    			attempts++
    			return nil, fmt.Errorf("validation or admission error")
    		}),
    		updatedPod2,
    	)
    	if err == nil {
    		t.Fatalf("expected error, got none")
    	}
    	// Implementations of the storage interface are allowed to ignore the suggestion,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top