Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,475 for subresource (0.21 sec)

  1. api/discovery/aggregated_v2.json

                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
                        "kind": "APIService",
                        "version": ""
                      },
                      "subresource": "status",
                      "verbs": [
                        "get",
                        "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	return nil
    }
    
    // splitSubresource checks if the given storage path is the path of a subresource and returns
    // the resource and subresource components.
    func splitSubresource(path string) (string, string, error) {
    	var resource, subresource string
    	switch parts := strings.Split(path, "/"); len(parts) {
    	case 2:
    		resource, subresource = parts[0], parts[1]
    	case 1:
    		resource = parts[0]
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2beta1.json

                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
                        "kind": "APIService",
                        "version": ""
                      },
                      "subresource": "status",
                      "verbs": [
                        "get",
                        "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				resourceRequest("verb1").Group("group2").Resource("resource2").Subresource("subresource1").New(): false,
    				resourceRequest("verb2").Group("group1").Resource("resource1").Subresource("subresource1").New(): true,
    				resourceRequest("verb2").Group("group2").Resource("resource1").Subresource("subresource2").New(): false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    				},
    			},
    			subresource: []metav1.ManagedFieldsEntry{
    				{
    					Manager:     "scale",
    					Operation:   metav1.ManagedFieldsOperationUpdate,
    					APIVersion:  "autoscaling/v1",
    					FieldsType:  "FieldsV1",
    					FieldsV1:    &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:replicas":{}}}`)},
    					Subresource: "scale",
    				},
    			},
    			expected: []metav1.ManagedFieldsEntry{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  6. pkg/kubelet/server/auth.go

    	case isSubpath(requestPath, logsPath):
    		// "log" to match other log subresources (pods/log, etc)
    		attrs.Subresource = "log"
    	case isSubpath(requestPath, checkpointPath):
    		attrs.Subresource = "checkpoint"
    	}
    
    	klog.V(5).InfoS("Node request attributes", "user", attrs.GetUser().GetName(), "verb", attrs.GetVerb(), "resource", attrs.GetResource(), "subresource", attrs.GetSubresource())
    
    	return attrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/mapper.go

    	keyFunc func(resource schema.GroupResource) string
    	// resources maps key -> subresource -> equivalent resources (subresource is not included in the returned resources).
    	// main resources are stored with subresource="".
    	resources map[string]map[string][]schema.GroupVersionResource
    	// kinds maps resource -> subresource -> kind
    	kinds map[schema.GroupVersionResource]map[string]schema.GroupVersionKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 18:26:06 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract.go

    //
    // The provided object MUST bo a root resource object since subresource objects
    // do not contain their own managed fields. For example, an autoscaling.Scale
    // object read from a "scale" subresource does not have any managed fields and so
    // cannot be used as the object.
    //
    // If the fields of a subresource are a subset of the fields of the root object,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 03:17:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    						Kind:    "CronJob",
    					},
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    					Subresources: []apidiscoveryv2.APISubresourceDiscovery{{
    						Subresource: "status",
    						ResponseKind: &metav1.GroupVersionKind{
    							Group:   "batch",
    							Version: "v1",
    							Kind:    "CronJob",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fieldmanager.go

    // configurations.
    type FieldManager struct {
    	fieldManager Manager
    	subresource  string
    }
    
    // NewFieldManager creates a new FieldManager that decodes, manages, then re-encodes managedFields
    // on update and apply requests.
    func NewFieldManager(f Manager, subresource string) *FieldManager {
    	return &FieldManager{fieldManager: f, subresource: subresource}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top