Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for ResourceClaims (0.27 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

      overhead:
        overheadKey: "0"
      preemptionPolicy: preemptionPolicyValue
      priority: 25
      priorityClassName: priorityClassNameValue
      readinessGates:
      - conditionType: conditionTypeValue
      resourceClaims:
      - name: nameValue
        source:
          resourceClaimName: resourceClaimNameValue
          resourceClaimTemplateName: resourceClaimTemplateNameValue
      restartPolicy: restartPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

              preemptionPolicy: preemptionPolicyValue
              priority: 25
              priorityClassName: priorityClassNameValue
              readinessGates:
              - conditionType: conditionTypeValue
              resourceClaims:
              - name: nameValue
                source:
                  resourceClaimName: resourceClaimNameValue
                  resourceClaimTemplateName: resourceClaimTemplateNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

              preemptionPolicy: preemptionPolicyValue
              priority: 25
              priorityClassName: priorityClassNameValue
              readinessGates:
              - conditionType: conditionTypeValue
              resourceClaims:
              - name: nameValue
                source:
                  resourceClaimName: resourceClaimNameValue
                  resourceClaimTemplateName: resourceClaimTemplateNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

            overheadKey: "0"
          preemptionPolicy: preemptionPolicyValue
          priority: 25
          priorityClassName: priorityClassNameValue
          readinessGates:
          - conditionType: conditionTypeValue
          resourceClaims:
          - name: nameValue
            source:
              resourceClaimName: resourceClaimNameValue
              resourceClaimTemplateName: resourceClaimTemplateNameValue
          restartPolicy: restartPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

            overheadKey: "0"
          preemptionPolicy: preemptionPolicyValue
          priority: 25
          priorityClassName: priorityClassNameValue
          readinessGates:
          - conditionType: conditionTypeValue
          resourceClaims:
          - name: nameValue
            source:
              resourceClaimName: resourceClaimNameValue
              resourceClaimTemplateName: resourceClaimTemplateNameValue
          restartPolicy: restartPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

      overhead:
        overheadKey: "0"
      preemptionPolicy: preemptionPolicyValue
      priority: 25
      priorityClassName: priorityClassNameValue
      readinessGates:
      - conditionType: conditionTypeValue
      resourceClaims:
      - name: nameValue
        source:
          resourceClaimName: resourceClaimNameValue
          resourceClaimTemplateName: resourceClaimTemplateNameValue
      restartPolicy: restartPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

      overhead:
        overheadKey: "0"
      preemptionPolicy: preemptionPolicyValue
      priority: 25
      priorityClassName: priorityClassNameValue
      readinessGates:
      - conditionType: conditionTypeValue
      resourceClaims:
      - name: nameValue
        source:
          resourceClaimName: resourceClaimNameValue
          resourceClaimTemplateName: resourceClaimTemplateNameValue
      restartPolicy: restartPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top