Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for createActions (0.22 sec)

  1. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "reference a service account",
    		},
    		{
    			name:       "forbid create of pod referencing secret",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(secretpod, nil, podKind, secretpod.Namespace, secretpod.Name, podResource, "", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "reference secrets",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/types.gen.go

    		}, metav1.CreateOptions{})
    	case gvk.DestinationRule:
    		return c.Istio().NetworkingV1alpha3().DestinationRules(cfg.Namespace).Create(context.TODO(), &apiistioioapinetworkingv1alpha3.DestinationRule{
    			ObjectMeta: objMeta,
    			Spec:       *(cfg.Spec.(*istioioapinetworkingv1alpha3.DestinationRule)),
    		}, metav1.CreateOptions{})
    	case gvk.EnvoyFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    	err = handler.Validate(context.TODO(), admission.NewAttributesRecord(newPod, nil, api.Kind("Pod").WithVersion("version"), newPod.Namespace, newPod.Name, corev1.Resource("pods").WithVersion("version"), "", admission.Create, &metav1.CreateOptions{}, false, nil), nil)
    	if err == nil {
    		t.Errorf("Expected an error because the pod exceeded allowed quota")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	var resourceVersionCounter int
    	var mutex sync.Mutex
    
    	return func(action cgotesting.Action) (handled bool, ret apiruntime.Object, err error) {
    		createAction, ok := action.(cgotesting.CreateAction)
    		if !ok {
    			return false, nil, nil
    		}
    		obj, ok := createAction.GetObject().(metav1.Object)
    		if !ok {
    			return false, nil, nil
    		}
    
    		mutex.Lock()
    		defer mutex.Unlock()
    		switch action.GetVerb() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher_test.go

    			if test.makeAttachment != nil {
    				attachment := test.makeAttachment()
    				_, err = csiAttacher.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    				if err != nil {
    					t.Fatalf("failed to create VolumeAttachment: %v", err)
    				}
    				gotAttachment, err := csiAttacher.k8s.StorageV1().VolumeAttachments().Get(context.TODO(), attachment.Name, metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_mounter_test.go

    					Attached:    false,
    					AttachError: nil,
    					DetachError: nil,
    				},
    			}
    			_, err = csiMounter.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, meta.CreateOptions{})
    			if err != nil {
    				t.Fatalf("failed to setup VolumeAttachment: %v", err)
    			}
    
    			// Mounter.SetUp()
    			var mounterArgs volume.MounterArgs
    			fsGroup := int64(2000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    	if err != nil {
    		t.Fatalf("Expected no error adding EndpointSlice: %v", err)
    	}
    	_, err = client.DiscoveryV1().EndpointSlices(ns).Create(context.TODO(), endpointSlice, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Expected no error creating EndpointSlice: %v", err)
    	}
    
    	logger, _ = ktesting.NewTestContext(t)
    	numActionsBefore := len(client.Actions())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	err = handler.Validate(context.TODO(), admission.NewAttributesRecord(&testPod, nil, api.Kind("Pod").WithVersion("version"), limitRange.Namespace, "testPod", api.Resource("pods").WithVersion("version"), "", admission.Create, &metav1.CreateOptions{}, false, nil), nil)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // This is a helper to convert UpdateOptions to CreateOptions for the
    // create-on-update path.
    func newCreateOptionsFromUpdateOptions(in *metav1.UpdateOptions) *metav1.CreateOptions {
    	co := &metav1.CreateOptions{
    		DryRun:          in.DryRun,
    		FieldManager:    in.FieldManager,
    		FieldValidation: in.FieldValidation,
    	}
    	co.TypeMeta.SetGroupVersionKind(metav1.SchemeGroupVersion.WithKind("CreateOptions"))
    	return co
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    	if err != nil {
    		t.Fatalf("Failed to create PDB: %v", err)
    	}
    	podNames := []string{"moe", "larry", "curly"}
    	for _, name := range podNames {
    		pod, _ := newPod(t, name)
    		_, err := dc.coreClient.CoreV1().Pods(pod.Namespace).Create(ctx, pod, metav1.CreateOptions{})
    		if err != nil {
    			t.Fatalf("Failed to create pod: %v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top