Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for PodController (0.4 sec)

  1. pkg/controller/job/job_controller_test.go

    				actual = job
    				return job, nil
    			}
    
    			// run
    			err = manager.syncJob(context.TODO(), testutil.GetKey(job, t))
    
    			// We need requeue syncJob task if podController error
    			if tc.podControllerError != nil {
    				if err == nil {
    					t.Error("Syncing jobs expected to return error on podControl exception")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/generated/openapi/zz_generated.openapi.go

    				Description: "Describes the class of pods that should avoid this node. Exactly one field should be set.",
    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"podController": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Reference to controller whose pods should avoid this node.",
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference"),
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top