Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ResourceClaims (0.26 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.ResourceClaims = append(m.ResourceClaims, ResourceClaimSchedulingStatus{})
    			if err := m.ResourceClaims[len(m.ResourceClaims)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// otherwise to an implementation-defined value
    	// +optional
    	Requests ResourceList
    }
    
    // ResourceClaim references one entry in PodSpec.ResourceClaims.
    type ResourceClaim struct {
    	// Name must match the name of one entry in pod.spec.resourceClaims of
    	// the Pod where this field is used. It makes that resource available
    	// inside a container.
    	Name string
    }
    
    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/types_swagger_doc_generated.go

    	"resourceClaims":                "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.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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