Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetTolerationsFromPodAnnotations (0.29 sec)

  1. pkg/apis/core/helper/helpers.go

    		return false
    	}
    
    	if pvc.Status.AllocatedResourceStatuses != nil {
    		return true
    	}
    	return false
    }
    
    // GetTolerationsFromPodAnnotations gets the json serialized tolerations data from Pod.Annotations
    // and converts it to the []Toleration type in core.
    func GetTolerationsFromPodAnnotations(annotations map[string]string) ([]core.Toleration, error) {
    	var tolerations []core.Toleration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    func ValidateTolerationsInPodAnnotations(annotations map[string]string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	tolerations, err := helper.GetTolerationsFromPodAnnotations(annotations)
    	if err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, core.TolerationsAnnotationKey, err.Error()))
    		return allErrs
    	}
    
    	if len(tolerations) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
Back to top