Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,397 for subresource (0.3 sec)

  1. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    	"resource":           "Resource is the fully-qualified resource being requested (for example, v1.pods)",
    	"subResource":        "SubResource is the subresource being requested, if any (for example, \"status\" or \"scale\")",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/audit/request.go

    		ae.ObjectRef.APIGroup = gvr.Group
    		ae.ObjectRef.APIVersion = gvr.Version
    	}
    	if len(ae.ObjectRef.Resource) == 0 {
    		ae.ObjectRef.Resource = gvr.Resource
    	}
    	if len(ae.ObjectRef.Subresource) == 0 {
    		ae.ObjectRef.Subresource = subresource
    	}
    
    	if ae.Level.Less(auditinternal.LevelRequest) {
    		return
    	}
    
    	if shouldOmitManagedFields(ctx) {
    		copy, ok, err := copyWithoutManagedFields(obj)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/interfaces.go

    	HasSynced() bool
    }
    
    // WebhookInvocation describes how to call a webhook, including the resource and subresource the webhook registered for,
    // and the kind that should be sent to the webhook.
    type WebhookInvocation struct {
    	Webhook     webhook.WebhookAccessor
    	Resource    schema.GroupVersionResource
    	Subresource string
    	Kind        schema.GroupVersionKind
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    		strconv.Itoa(cancelledRequests),
    	)
    }
    
    func rowForRequestDetails(username, verb, path, namespace, name, apiVersion, resource, subResource string) string {
    	return row(
    		username,
    		verb,
    		path,
    		namespace,
    		name,
    		apiVersion,
    		resource,
    		subResource,
    	)
    }
    
    func row(columns ...string) string {
    	return strings.Join(columns, ",\t")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/conversion.go

    }
    
    func autoConvertv2beta1APISubresourceDiscoveryTov2APISubresourceDiscovery(in *v2beta1.APISubresourceDiscovery, out *v2.APISubresourceDiscovery, s conversion.Scope) error {
    	out.Subresource = in.Subresource
    	out.ResponseKind = (*v1.GroupVersionKind)(unsafe.Pointer(in.ResponseKind))
    	out.AcceptedTypes = *(*[]v1.GroupVersionKind)(unsafe.Pointer(&in.AcceptedTypes))
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    				}
    				if parts[2] != "foo" {
    					t.Errorf("url doesn't contain name: %#v", req)
    					return false
    				}
    				return true
    			},
    		},
    		{
    			name:        "test with subresource",
    			subresource: "status",
    			Resp: &http.Response{
    				StatusCode: http.StatusOK,
    				Header:     header(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    	"resource":           "Resource is the fully-qualified resource being requested (for example, v1.pods)",
    	"subResource":        "SubResource is the subresource being requested, if any (for example, \"status\" or \"scale\")",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/traces.go

    	if info.Namespace != "" {
    		spanName += "/namespaces/{:namespace}"
    	}
    	spanName += "/" + info.Resource
    	if info.Name != "" {
    		spanName += "/" + "{:name}"
    	}
    	if info.Subresource != "" {
    		spanName += "/" + info.Subresource
    	}
    	return r.Method + " " + spanName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 15 01:42:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. pkg/controller/certificates/approver/sarapprove.go

    			successMessage: "Auto approving self kubelet client certificate after SubjectAccessReview.",
    		},
    		{
    			recognize:      isNodeClientCert,
    			permission:     authorization.ResourceAttributes{Group: "certificates.k8s.io", Resource: "certificatesigningrequests", Verb: "create", Subresource: "nodeclient", Version: "*"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. pkg/registry/authorization/util/helpers.go

    		User:            user,
    		Verb:            in.Verb,
    		Namespace:       in.Namespace,
    		APIGroup:        in.Group,
    		APIVersion:      matchAllVersionIfEmpty(in.Version),
    		Resource:        in.Resource,
    		Subresource:     in.Subresource,
    		Name:            in.Name,
    		ResourceRequest: true,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top