Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for PreferAvoidPods (0.34 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AvoidPods) DeepCopyInto(out *AvoidPods) {
    	*out = *in
    	if in.PreferAvoidPods != nil {
    		in, out := &in.PreferAvoidPods, &out.PreferAvoidPods
    		*out = make([]PreferAvoidPodsEntry, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AvoidPods) DeepCopyInto(out *AvoidPods) {
    	*out = *in
    	if in.PreferAvoidPods != nil {
    		in, out := &in.PreferAvoidPods, &out.PreferAvoidPods
    		*out = make([]PreferAvoidPodsEntry, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    				"spec.taints[0].value":  true,
    				"spec.taints[0].effect": true,
    				"metadata.annotations.scheduler.alpha.kubernetes.io/preferAvoidPods[0].PodSignature":                          true,
    				"metadata.annotations.scheduler.alpha.kubernetes.io/preferAvoidPods[0].PodSignature.PodController.Controller": true,
    			}
    			if val, ok := expectedFields[field]; ok {
    				if !val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.PreferAvoidPods = append(m.PreferAvoidPods, PreferAvoidPodsEntry{})
    			if err := m.PreferAvoidPods[len(m.PreferAvoidPods)-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: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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