Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for ResourceClaims (0.2 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/core/validation/validation_test.go

    		"NodeName",
    		"NodeSelector",
    		"PreemptionPolicy",
    		"Priority",
    		"PriorityClassName",
    		"ReadinessGates",
    		"ResourceClaims[*].Name",
    		"ResourceClaims[*].Source.ResourceClaimName",
    		"ResourceClaims[*].Source.ResourceClaimTemplateName",
    		"RestartPolicy",
    		"RuntimeClassName",
    		"SchedulerName",
    		"SchedulingGates[*].Name",
    		"SecurityContext.RunAsNonRoot",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. pkg/scheduler/eventhandlers.go

    			}
    		case framework.ResourceClaim:
    			if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    				if handlerRegistration, err = informerFactory.Resource().V1alpha2().ResourceClaims().Informer().AddEventHandler(
    					buildEvtResHandler(at, framework.ResourceClaim, "ResourceClaim"),
    				); err != nil {
    					return err
    				}
    				handlers = append(handlers, handlerRegistration)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation.go

    	return allErrs
    }
    
    func validatePodSchedulingStatus(status *resource.PodSchedulingContextStatus, fldPath *field.Path) field.ErrorList {
    	return validatePodSchedulingClaims(status.ResourceClaims, fldPath.Child("claims"))
    }
    
    func validatePodSchedulingClaims(claimStatuses []resource.ResourceClaimSchedulingStatus, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	names := sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/core.go

    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Resource().V1alpha2().PodSchedulingContexts(),
    		controllerContext.InformerFactory.Resource().V1alpha2().ResourceClaims(),
    		controllerContext.InformerFactory.Resource().V1alpha2().ResourceClaimTemplates())
    	if err != nil {
    		return nil, true, fmt.Errorf("failed to start resource claim controller: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top