Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for nodecontroller (0.24 sec)

  1. 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)
  2. pkg/apis/core/validation/validation_test.go

    				},
    			},
    		},
    		"invalid-podController": {
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "abc-123",
    				Annotations: map[string]string{
    					core.PreferAvoidPodsAnnotationKey: `
    							{
    							    "preferAvoidPods": [
    							        {
    							            "podSignature": {
    							                "podController": {
    							                    "apiVersion": "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

    of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.\n\nPossible enum values:\n - `\"NoExecute\"` Evict any already-running pods that do not tolerate the taint. Currently enforced by NodeController.\n - `\"NoSchedule\"` Do not allow new pods to schedule onto the node unless they tolerate the taint, but allow all pods submitted to Kubelet without going through the scheduler to start, and allow all already-running pods to continue running....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.PodController == nil {
    				m.PodController = &v1.OwnerReference{}
    			}
    			if err := m.PodController.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)
  5. 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)
  6. 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)
  7. 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)
  8. 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