Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 219 for apiGroup (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    	// for non-resource requests, this is the lowercase http verb
    	Verb string
    
    	APIPrefix  string
    	APIGroup   string
    	APIVersion string
    	Namespace  string
    	// Resource is the name of the resource being requested.  This is not the kind.  For example: pods
    	Resource string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    type IngressClassParametersReference struct {
    	// apiGroup is the group for the resource being referenced. If APIGroup is
    	// not specified, the specified Kind must be in the core API group. For any
    	// other third-party types, APIGroup is required.
    	// +optional
    	APIGroup *string `json:"apiGroup,omitempty" protobuf:"bytes,1,opt,name=aPIGroup"`
    
    	// kind is the type of resource being referenced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    				User: &user.DefaultInfo{
    					Name:   "jane",
    					UID:    "1",
    					Groups: []string{"group1", "group2"},
    				},
    				Verb:            "GET",
    				Namespace:       "kittensandponies",
    				APIGroup:        "group3",
    				APIVersion:      "v7beta3",
    				Resource:        "pods",
    				Subresource:     "proxy",
    				Name:            "my-pod",
    				ResourceRequest: true,
    				Path:            "/foo",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    				}
    			} else {
    				types := []runtime.Object{&metav1.Status{}, &metav1.APIGroup{}}
    				t := types[c.Rand.Intn(len(types))]
    				c.Fuzz(t)
    				*j = t
    			}
    		},
    		func(r *runtime.RawExtension, c fuzz.Continue) {
    			// Pick an arbitrary type and fuzz it
    			types := []runtime.Object{&metav1.Status{}, &metav1.APIGroup{}}
    			obj := types[c.Rand.Intn(len(types))]
    			c.Fuzz(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_test.go

    				}
    				if event.ObjectRef.APIVersion != "v1" {
    					t.Errorf("Unexpected apiVersion: %s", event.ObjectRef.APIVersion)
    				}
    				if event.ObjectRef.APIGroup != "" {
    					t.Errorf("Unexpected apiGroup: %s", event.ObjectRef.APIGroup)
    				}
    				if (event.ResponseStatus == nil) != (expect.ResponseStatus == nil) {
    					t.Errorf("Unexpected ResponseStatus: %v", event.ResponseStatus)
    					continue
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  6. pkg/registry/discovery/endpointslice/strategy_test.go

    			ctx := genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{APIGroup: "discovery.k8s.io", APIVersion: "v1beta1", Resource: "endpointslices"})
    			if tc.v1Request {
    				ctx = genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{APIGroup: "discovery.k8s.io", APIVersion: "v1", Resource: "endpointslices"})
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  7. pkg/apis/networking/v1beta1/zz_generated.conversion.go

    	out.APIGroup = (*string)(unsafe.Pointer(in.APIGroup))
    	out.Kind = in.Kind
    	out.Name = in.Name
    	out.Scope = (*string)(unsafe.Pointer(in.Scope))
    	out.Namespace = (*string)(unsafe.Pointer(in.Namespace))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +optional
      optional string name = 3;
    
      // +optional
      optional string uid = 4;
    
      // APIGroup is the name of the API group that contains the referred object.
      // The empty string represents the core API group.
      // +optional
      optional string apiGroup = 5;
    
      // APIVersion is the version of the API group that contains the referred object.
      // +optional
      optional string apiVersion = 6;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    		// StorageVersionManager has synced
    		if !h.HasFinishedSync() {
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    		gvr := schema.GroupVersionResource{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion, Resource: requestInfo.Resource}
    		if requestInfo.APIGroup == "" {
    			gvr.Group = "core"
    		}
    
    		// find servers that are capable of serving this request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/generated.proto

    // to specify a cluster or namespace-scoped resource.
    message IngressClassParametersReference {
      // apiGroup is the group for the resource being referenced. If APIGroup is
      // not specified, the specified Kind must be in the core API group. For any
      // other third-party types, APIGroup is required.
      // +optional
      optional string aPIGroup = 1;
    
      // kind is the type of resource being referenced.
      optional string kind = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top