Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.PodSignature)(nil), (*core.PodSignature)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_PodSignature_To_core_PodSignature(a.(*v1.PodSignature), b.(*core.PodSignature), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.PodSignature)(nil), (*v1.PodSignature)(nil), func(a, b interface{}, scope conversion.Scope) error {
    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. pkg/apis/core/validation/validation.go

    	allErrors := field.ErrorList{}
    	if avoidPodEntry.PodSignature.PodController == nil {
    		allErrors = append(allErrors, field.Required(fldPath.Child("PodSignature"), ""))
    	} else {
    		if !*(avoidPodEntry.PodSignature.PodController.Controller) {
    			allErrors = append(allErrors,
    				field.Invalid(fldPath.Child("PodSignature").Child("PodController").Child("Controller"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// The class of pods.
    	PodSignature PodSignature
    	// Time at which this entry was added to the list.
    	// +optional
    	EvictionTime metav1.Time
    	// (brief) reason why this entry was added to the list.
    	// +optional
    	Reason string
    	// Human readable message indicating why this entry was added to the list.
    	// +optional
    	Message string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // Describes a class of pods that should avoid this node.
    type PreferAvoidPodsEntry struct {
    	// The class of pods.
    	PodSignature PodSignature `json:"podSignature" protobuf:"bytes,1,opt,name=podSignature"`
    	// Time at which this entry was added to the list.
    	// +optional
    	EvictionTime metav1.Time `json:"evictionTime,omitempty" protobuf:"bytes,2,opt,name=evictionTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string uid = 1;
    }
    
    // Describes a class of pods that should avoid this node.
    message PreferAvoidPodsEntry {
      // The class of pods.
      optional PodSignature podSignature = 1;
    
      // Time at which this entry was added to the list.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time evictionTime = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string uid = 1;
    }
    
    // Describes a class of pods that should avoid this node.
    message PreferAvoidPodsEntry {
      // The class of pods.
      optional PodSignature podSignature = 1;
    
      // Time at which this entry was added to the list.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time evictionTime = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":              "Describes the class of pods that should avoid this node. Exactly one field should be set.",
    	"podController": "Reference to controller whose pods should avoid this node.",
    }
    
    func (PodSignature) SwaggerDoc() map[string]string {
    	return map_PodSignature
    }
    
    var map_PodSpec = map[string]string{
    	"":                              "PodSpec is a description of a pod.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top