Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for PreferAvoidPods (0.21 sec)

  1. pkg/apis/core/types.go

    // Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and
    // will eventually become a field of NodeStatus.
    type AvoidPods struct {
    	// Bounded-sized list of signatures of pods that should avoid this node, sorted
    	// in timestamp order from oldest to newest. Size of the slice is unspecified.
    	// +optional
    	PreferAvoidPods []PreferAvoidPodsEntry
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_AvoidPods = map[string]string{
    	"":                "AvoidPods describes pods that should avoid this node. This is the value for a Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and will eventually become a field of NodeStatus.",
    	"preferAvoidPods": "Bounded-sized list of signatures of pods that should avoid this node, sorted in timestamp order from oldest to newest. Size of the slice is unspecified.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("AvoidPods"), core.PreferAvoidPodsAnnotationKey, err.Error()))
    		return allErrs
    	}
    
    	if len(avoids.PreferAvoidPods) != 0 {
    		for i, pa := range avoids.PreferAvoidPods {
    			idxPath := fldPath.Child(core.PreferAvoidPodsAnnotationKey).Index(i)
    			allErrs = append(allErrs, validatePreferAvoidPodsEntry(pa, idxPath)...)
    		}
    	}
    
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

    // Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and
    // will eventually become a field of NodeStatus.
    message AvoidPods {
      // Bounded-sized list of signatures of pods that should avoid this node, sorted
      // in timestamp order from oldest to newest. Size of the slice is unspecified.
      // +optional
      // +listType=atomic
      repeated PreferAvoidPodsEntry preferAvoidPods = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    				Description: "AvoidPods describes pods that should avoid this node. This is the value for a Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and will eventually become a field of NodeStatus.",
    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"preferAvoidPods": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "atomic",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top