Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for sresource (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			// duplicate defaulting behaviour
    			if tc.resource.Spec.Conversion != nil && tc.resource.Spec.Conversion.Strategy == apiextensions.WebhookConverter && len(tc.resource.Spec.Conversion.ConversionReviewVersions) == 0 {
    				tc.resource.Spec.Conversion.ConversionReviewVersions = []string{"v1beta1"}
    			}
    			ctx := context.TODO()
    			errs := ValidateCustomResourceDefinition(ctx, tc.resource)
    			seenErrs := make([]bool, len(errs))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    type LimitRangeItem struct {
    	// Type of resource that this limit applies to
    	// +optional
    	Type LimitType
    	// Max usage constraints on this kind by resource name
    	// +optional
    	Max ResourceList
    	// Min usage constraints on this kind by resource name
    	// +optional
    	Min ResourceList
    	// Default resource requirement limit value by resource name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // Default resource requirement limit value by resource name if resource limit is omitted.
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> default = 4;
    
      // DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> defaultRequest = 5;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"type":                 "Type of resource that this limit applies to.",
    	"max":                  "Max usage constraints on this kind by resource name.",
    	"min":                  "Min usage constraints on this kind by resource name.",
    	"default":              "Default resource requirement limit value by resource name if resource limit is omitted.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// Compute Resources required by this container.
    	// Cannot be updated.
    	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
    	// +optional
    	Resources ResourceRequirements `json:"resources,omitempty" protobuf:"bytes,8,opt,name=resources"`
    	// Resources resize policy for the container.
    	// +featureGate=InPlacePodVerticalScaling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		}
    		limitTypeSet[limit.Type] = true
    
    		keys := sets.Set[string]{}
    		min := map[string]resource.Quantity{}
    		max := map[string]resource.Quantity{}
    		defaults := map[string]resource.Quantity{}
    		defaultRequests := map[string]resource.Quantity{}
    		maxLimitRequestRatios := map[string]resource.Quantity{}
    
    		for k, q := range limit.Max {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

      - apiGroups: [""]
        resources:
          - nodes
        verbs:
          - watch
          - list
          - get
      # Pods are watched to check for existence as part of IPAM controller.
      - apiGroups: [""]
        resources:
          - pods
        verbs:
          - get
          - list
          - watch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - The deprecated flag `--lock-object-namespace` and `--lock-object-name` have been removed from kube-scheduler. Please use `--leader-elect-resource-namespace` and `--leader-elect-resource-name` or ComponentConfig instead to configure those parameters. ([#119130](https://github.com/kubernetes/kubernetes/pull/119130), [@SataQiu](https://github.com/SataQiu)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - `PodSpec.Container.Resources` became mutable for CPU and memory resource types.
      - `PodSpec.Container.ResizePolicy` (new object) gives users control over how their containers are resized.
      - `PodStatus.Resize` status describes the state of a requested Pod resize.
      - `PodStatus.ResourcesAllocated` describes node resources allocated to Pod.
      - `PodStatus.Resources` describes node resources applied to running containers by CRI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top