Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for NonIndexed (0.15 sec)

  1. pkg/controller/job/metrics/metrics.go

    const JobControllerSubsystem = "job_controller"
    
    var (
    	// JobSyncDurationSeconds tracks the latency of Job syncs. Possible label
    	// values:
    	//   completion_mode: Indexed, NonIndexed
    	//   result:          success, error
    	//   action:          reconciling, tracking, pods_created, pods_deleted
    	JobSyncDurationSeconds = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional int32 ttlSecondsAfterFinished = 8;
    
      // completionMode specifies how Pod completions are tracked. It can be
      // `NonIndexed` (default) or `Indexed`.
      //
      // `NonIndexed` means that the Job is considered complete when there have
      // been .spec.completions successfully completed Pods. Each Pod completion is
      // homologous to each other.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	// completionMode specifies how Pod completions are tracked. It can be
    	// `NonIndexed` (default) or `Indexed`.
    	//
    	// `NonIndexed` means that the Job is considered complete when there have
    	// been .spec.completions successfully completed Pods. Each Pod completion is
    	// homologous to each other.
    	//
    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/apis/batch/types.go

    	// +optional
    	TTLSecondsAfterFinished *int32
    
    	// completionMode specifies how Pod completions are tracked. It can be
    	// `NonIndexed` (default) or `Indexed`.
    	//
    	// `NonIndexed` means that the Job is considered complete when there have
    	// been .spec.completions successfully completed Pods. Each Pod completion is
    	// homologous to each other.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional int32 ttlSecondsAfterFinished = 8;
    
      // completionMode specifies how Pod completions are tracked. It can be
      // `NonIndexed` (default) or `Indexed`.
      //
      // `NonIndexed` means that the Job is considered complete when there have
      // been .spec.completions successfully completed Pods. Each Pod completion is
      // homologous to each other.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"completionMode":          "completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other.\n\n`Indexed` means that the Pods of a Job get an associated completion...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("conditions"), field.OmitValueType{}, "cannot set SuccessCriteriaMet to NonIndexed Job"))
    	}
    	if isJobSuccessCriteriaMet(job) && IsJobFailed(job) {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("conditions"), field.OmitValueType{}, "cannot set SuccessCriteriaMet=True and Failed=true conditions"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    				},
    				Status: batch.JobStatus{
    					FailedIndexes:    ptr.To("0,2"),
    					CompletedIndexes: "2-4",
    					Active:           1,
    				},
    			},
    		},
    		"invalid addition of SuccessCriteriaMet for NonIndexed Job": {
    			enableJobSuccessPolicy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					SuccessPolicy: validSuccessPolicy,
    				},
    			},
    			newJob: &batch.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation_test.go

    					UID:       types.UID("1a2b3c"),
    				},
    				Spec: batch.JobSpec{
    					Selector: validGeneratedSelector,
    					Template: validHostNetPodTemplateSpec,
    				},
    			},
    		},
    		"valid NonIndexed completion mode": {
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    			job: batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "myjob",
    					Namespace: metav1.NamespaceDefault,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "completionMode": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top