Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for DeleteCollection (0.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"Supported media types: [application/json, application/yaml, application/vnd.kubernetes.protobuf]")
    	fs.IntVar(&s.DeleteCollectionWorkers, "delete-collection-workers", s.DeleteCollectionWorkers,
    		"Number of workers spawned for DeleteCollection call. These are used to speed up namespace cleanup.")
    
    	fs.BoolVar(&s.EnableGarbageCollection, "enable-garbage-collector", s.EnableGarbageCollection, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. api/openapi-spec/swagger.json

              "type": "string"
            },
            "verbs": {
              "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/eviction_test.go

    }
    
    func (ms *mockStore) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    	return nil, nil
    }
    
    func (ms *mockStore) DeleteCollection(ctx context.Context, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions, listOptions *metainternalversion.ListOptions) (runtime.Object, error) {
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				if err := op.Do(ctx); err != nil {
    					t.Fatalf("failed %T operation %v: %v\n%v", op, i, err, op)
    				}
    			}
    
    			// Reset resources
    			err := ctx.DynamicClient.Resource(myCRDV1Beta1).Namespace("default").DeleteCollection(context.TODO(), metav1.DeleteOptions{}, metav1.ListOptions{})
    			if err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    var myCRDV1Beta1 schema.GroupVersionResource = schema.GroupVersionResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

            resources: ["nodes/status", "pods/status"]
        omitStages:
          - "RequestReceived"
    
      # deletecollection calls can be large, don't log responses for expected namespace deletions
      - level: Request
        users: ["system:serviceaccount:kube-system:namespace-controller"]
        verbs: ["deletecollection"]
        omitStages:
          - "RequestReceived"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    - Kube-apiserver: DELETECOLLECTION API requests are now recorded in metrics with the correct verb. ([#113133](https://github.com/kubernetes/kubernetes/pull/113133), [@sxllwx](https://github.com/sxllwx)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top