Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,475 for subresource (0.23 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaimTemplate.yaml

      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
        manager: managerValue
        operation: operationValue
        subresource: subresourceValue
        time: "2004-01-01T01:01:01Z"
      name: nameValue
      namespace: namespaceValue
      ownerReferences:
      - apiVersion: apiVersionValue
        blockOwnerDeletion: true
        controller: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/types.go

    	Resource metav1.GroupVersionResource `json:"resource" protobuf:"bytes,3,opt,name=resource"`
    	// SubResource is the subresource being requested, if any (for example, "status" or "scale")
    	// +optional
    	SubResource string `json:"subResource,omitempty" protobuf:"bytes,4,opt,name=subResource"`
    
    	// RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    					RawQuery: "/api/v1/namespaces/default/pods/test-pod/log",
    				},
    			},
    			requestInfo: &request.RequestInfo{
    				Verb:              "GET",
    				Resource:          "pods",
    				IsResourceRequest: true,
    				Subresource:       "log",
    			},
    			expectedVerb: "CONNECT",
    		},
    		{
    			desc:        "Pod exec should be transformed to CONNECT",
    			initialVerb: "POST",
    			request: &http.Request{
    				Method: "POST",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler.go

    	}
    }
    
    // ToSubresource filter the managed fields of the main resource and convert
    // them so that they can be handled by scale.
    // For the managed fields that have a replicas path it performs two changes:
    //  1. APIVersion is changed to the APIVersion of the scale subresource
    //  2. Replicas path of the main resource is transformed to the replicas path of
    //     the scale subresource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/conflict.go

    		return fmt.Sprintf("%q", manager)
    	}
    	managerStr := fmt.Sprintf("%q", encodedManager.Manager)
    	if encodedManager.Subresource != "" {
    		managerStr = fmt.Sprintf("%s with subresource %q", managerStr, encodedManager.Subresource)
    	}
    	if encodedManager.Operation == metav1.ManagedFieldsOperationUpdate {
    		if encodedManager.Time == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.ResourceClaimTemplate.json

            "operation": "operationValue",
            "apiVersion": "apiVersionValue",
            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "metadata": {
          "name": "nameValue",
          "generateName": "generateNameValue",
          "namespace": "namespaceValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.go

    					}
    				} else {
    					if mutatingAdmission.Handles(admission.Update) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Top-level and per-version schemas are mutually exclusive.
    	// +optional
    	Validation *CustomResourceValidation
    	// Subresources describes the subresources for CustomResource
    	// Optional, the global subresources for all versions.
    	// Top-level and per-version subresources are mutually exclusive.
    	// +optional
    	Subresources *CustomResourceSubresources
    	// Versions is the list of all supported versions for this resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules_test.go

    func a(group, version, resource, subresource, name string, operation admission.Operation, operationOptions runtime.Object) admission.Attributes {
    	return admission.NewAttributesRecord(
    		nil, nil,
    		schema.GroupVersionKind{Group: group, Version: version, Kind: "k" + resource},
    		"ns", name,
    		schema.GroupVersionResource{Group: group, Version: version, Resource: resource}, subresource,
    		operation,
    		operationOptions,
    		false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 23:28:16 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1beta1/types.go

    	Resource metav1.GroupVersionResource `json:"resource" protobuf:"bytes,3,opt,name=resource"`
    	// SubResource is the subresource being requested, if any (for example, "status" or "scale")
    	// +optional
    	SubResource string `json:"subResource,omitempty" protobuf:"bytes,4,opt,name=subResource"`
    
    	// RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
Back to top