Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 233 for job3 (0.91 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	JobTrackingFinalizer = labelPrefix + "job-tracking"
    	// The Job labels will use batch.kubernetes.io as a prefix for all labels
    	// Historically the job controller uses unprefixed labels for job-name and controller-uid and
    	// Kubernetes continutes to recognize those unprefixed labels for consistency.
    	JobNameLabel = labelPrefix + "job-name"
    	// ControllerUid is used to programatically get pods corresponding to a Job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"startTime":               "Represents time when the job controller started processing a job. When a Job is created in the suspended state, this field is not set until the first time it is resumed. This field is reset every time a Job is resumed from suspension. It is represented in RFC3339 form and is in UTC.\n\nOnce set, the field can only be removed when the job is suspended. The field cannot be modified while the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. pkg/apis/batch/types.go

    	// a Job is created with suspend set to true, no Pods are created by the Job
    	// controller. If a Job is suspended after creation (i.e. the flag goes from
    	// false to true), the Job controller will delete all active Pods associated
    	// with this Job. Users must design their workload to gracefully handle this.
    	// Suspending a Job will reset the StartTime field of the Job, effectively
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. pkg/registry/batch/job/strategy.go

    	}
    
    	return fields
    }
    
    // PrepareForCreate clears the status of a job before creation.
    func (jobStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	job := obj.(*batch.Job)
    	generateSelectorIfNeeded(job)
    	job.Status = batch.JobStatus{}
    
    	job.Generation = 1
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.JobPodFailurePolicy) {
    		job.Spec.PodFailurePolicy = nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/storage/storage_test.go

    	defer server.Terminate(t)
    	defer storage.Job.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Job.Store)
    	test.TestGet(validNewJob())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Job.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Job.Store)
    	test.TestList(validNewJob())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/utils.go

    func inActiveList(cj *batchv1.CronJob, uid types.UID) bool {
    	for _, j := range cj.Status.Active {
    		if j.UID == uid {
    			return true
    		}
    	}
    	return false
    }
    
    // inActiveListByName checks if cronjob's status.active has a job with the same
    // name and namespace.
    func inActiveListByName(cj *batchv1.CronJob, job *batchv1.Job) bool {
    	for _, j := range cj.Status.Active {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/job.go

    }
    
    func extractJob(job *apibatchv1.Job, fieldManager string, subresource string) (*JobApplyConfiguration, error) {
    	b := &JobApplyConfiguration{}
    	err := managedfields.ExtractInto(job, internal.Parser().Type("io.k8s.api.batch.v1.Job"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(job.Name)
    	b.WithNamespace(job.Namespace)
    
    	b.WithKind("Job")
    	b.WithAPIVersion("batch/v1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.Job.yaml

    apiVersion: batch/v1
    kind: Job
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 35K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

    apiVersion: batch/v1
    kind: Job
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

    apiVersion: batch/v1
    kind: Job
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top