Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 130 for ResourceClaims (0.38 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// +patchStrategy=merge,retainKeys
    	// +listType=map
    	// +listMapKey=name
    	// +featureGate=DynamicResourceAllocation
    	// +optional
    	ResourceClaims []PodResourceClaim `json:"resourceClaims,omitempty" patchStrategy:"merge,retainKeys" patchMergeKey:"name" protobuf:"bytes,39,rep,name=resourceClaims"`
    }
    
    // PodResourceClaim references exactly one ResourceClaim through a ClaimSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // This must match the name of an entry in pod.spec.resourceClaims,
      // which implies that the string must be a DNS_LABEL.
      optional string name = 1;
    
      // ResourceClaimName is the name of the ResourceClaim that was
      // generated for the Pod in the namespace of the Pod. If this is
      // unset, then generating a ResourceClaim was not necessary. The
      // pod.spec.resourceClaims entry can be ignored in this case.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

            "description": "PodSchedulingContextStatus describes where resources for the Pod can be allocated.",
            "properties": {
              "resourceClaims": {
                "description": "ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses \"WaitForFirstConsumer\" allocation mode.",
                "items": {
                  "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, vErrs...)
    	podClaimNames := gatherPodResourceClaimNames(spec.ResourceClaims)
    	allErrs = append(allErrs, validatePodResourceClaims(podMeta, spec.ResourceClaims, fldPath.Child("resourceClaims"))...)
    	allErrs = append(allErrs, validateContainers(spec.Containers, vols, podClaimNames, gracePeriod, fldPath.Child("containers"), opts, &spec.RestartPolicy, hostUsers)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=name
      // +featureGate=PodSchedulingReadiness
      // +optional
      repeated PodSchedulingGate schedulingGates = 38;
    
      // ResourceClaims defines which ResourceClaims must be allocated
      // and reserved before the Pod is allowed to start. The resources
      // will be made available to those containers which consume them
      // by name.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - When scheduling a mix of pods using `ResourceClaims` and others that don't, scheduling a pod with `ResourceClaims` has a lower impact on scheduling latency. ([#121876](https://github.com/kubernetes/kubernetes/pull/121876), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.SchedulingGates != nil {
    		in, out := &in.SchedulingGates, &out.SchedulingGates
    		*out = make([]PodSchedulingGate, len(*in))
    		copy(*out, *in)
    	}
    	if in.ResourceClaims != nil {
    		in, out := &in.ResourceClaims, &out.ResourceClaims
    		*out = make([]PodResourceClaim, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.SchedulingGates != nil {
    		in, out := &in.SchedulingGates, &out.SchedulingGates
    		*out = make([]PodSchedulingGate, len(*in))
    		copy(*out, *in)
    	}
    	if in.ResourceClaims != nil {
    		in, out := &in.ResourceClaims, &out.ResourceClaims
    		*out = make([]PodResourceClaim, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "resourceClaims": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - The names of ResourceClaims generated from ResourceClaimTemplate are now generated. The base name is still `<pod>-<claim name>`, but a random suffix will avoid name collisions. ([#117351](https://github.com/kubernetes/kubernetes/pull/117351), [@pohly](https://github.com/pohly))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top