Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PreferAvoidPods (0.23 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_AvoidPods_To_core_AvoidPods(in *v1.AvoidPods, out *core.AvoidPods, s conversion.Scope) error {
    	out.PreferAvoidPods = *(*[]core.PreferAvoidPodsEntry)(unsafe.Pointer(&in.PreferAvoidPods))
    	return nil
    }
    
    // Convert_v1_AvoidPods_To_core_AvoidPods is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    // 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
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. common-protos/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
      repeated PreferAvoidPodsEntry preferAvoidPods = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top