Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PodController (0.24 sec)

  1. pkg/apis/core/validation/validation.go

    	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"),
    					*(avoidPodEntry.PodSignature.PodController.Controller), "must point to a 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)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PodSignature_To_core_PodSignature(in *v1.PodSignature, out *core.PodSignature, s conversion.Scope) error {
    	out.PodController = (*metav1.OwnerReference)(unsafe.Pointer(in.PodController))
    	return nil
    }
    
    // Convert_v1_PodSignature_To_core_PodSignature 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)
  3. staging/src/k8s.io/api/core/v1/types.go

    // Exactly one field should be set.
    type PodSignature struct {
    	// Reference to controller whose pods should avoid this node.
    	// +optional
    	PodController *metav1.OwnerReference `json:"podController,omitempty" protobuf:"bytes,1,opt,name=podController"`
    }
    
    // Describe a container image
    type ContainerImage struct {
    	// Names by which this image is known.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // Exactly one field should be set.
    message PodSignature {
      // Reference to controller whose pods should avoid this node.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.OwnerReference podController = 1;
    }
    
    // PodSpec is a description of a pod.
    message PodSpec {
      // List of volumes that can be mounted by containers belonging to the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    // PodSignature describes the class of pods that should avoid this node.
    // Exactly one field should be set.
    type PodSignature struct {
    	// Reference to controller whose pods should avoid this node.
    	// +optional
    	PodController *metav1.OwnerReference
    }
    
    // ContainerImage describe a container image
    type ContainerImage struct {
    	// Names by which this image is known.
    	// +optional
    	Names []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)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_PodSecurityContext
    }
    
    var map_PodSignature = map[string]string{
    	"":              "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{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

    // Exactly one field should be set.
    message PodSignature {
      // Reference to controller whose pods should avoid this node.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.OwnerReference podController = 1;
    }
    
    // PodSpec is a description of a pod.
    message PodSpec {
      // List of volumes that can be mounted by containers belonging to the pod.
    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