Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NonIndexedCompletion (0.32 sec)

  1. pkg/controller/job/job_controller_test.go

    	jm.podStoreSynced = alwaysReady
    	jm.jobStoreSynced = alwaysReady
    
    	job1 := newJob(1, 1, 6, batch.NonIndexedCompletion)
    	job1.Name = "job1"
    	job2 := newJob(1, 1, 6, batch.NonIndexedCompletion)
    	job2.Name = "job2"
    	job3 := newJob(1, 1, 6, batch.NonIndexedCompletion)
    	job3.Name = "job3"
    	job3.Spec.Selector.MatchLabels = map[string]string{"other": "labels"}
    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. pkg/apis/batch/types.go

    type CompletionMode string
    
    const (
    	// NonIndexedCompletion is a Job completion mode. In this mode, the Job is
    	// considered complete when there have been .spec.completions
    	// successfully completed Pods. Pod completions are homologous to each other.
    	NonIndexedCompletion CompletionMode = "NonIndexed"
    
    	// IndexedCompletion is a Job completion mode. In this mode, the Pods of a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    // +enum
    type CompletionMode string
    
    const (
    	// NonIndexedCompletion is a Job completion mode. In this mode, the Job is
    	// considered complete when there have been .spec.completions
    	// successfully completed Pods. Pod completions are homologous to each other.
    	NonIndexedCompletion CompletionMode = "NonIndexed"
    
    	// IndexedCompletion is a Job completion mode. In this mode, the Pods of a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    			return fmt.Errorf("error removing backoff record %w", err)
    		}
    		return nil
    	}
    
    	if job.Spec.CompletionMode != nil && *job.Spec.CompletionMode != batch.NonIndexedCompletion && *job.Spec.CompletionMode != batch.IndexedCompletion {
    		jm.recorder.Event(&job, v1.EventTypeWarning, "UnknownCompletionMode", "Skipped Job sync because completion mode is unknown")
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top