Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for jobTemplate (0.17 sec)

  1. staging/src/k8s.io/api/batch/v1beta1/zz_generated.deepcopy.go

    		*out = new(int64)
    		**out = **in
    	}
    	if in.Suspend != nil {
    		in, out := &in.Suspend, &out.Suspend
    		*out = new(bool)
    		**out = **in
    	}
    	in.JobTemplate.DeepCopyInto(&out.JobTemplate)
    	if in.SuccessfulJobsHistoryLimit != nil {
    		in, out := &in.SuccessfulJobsHistoryLimit, &out.SuccessfulJobsHistoryLimit
    		*out = new(int32)
    		**out = **in
    	}
    	if in.FailedJobsHistoryLimit != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 21:43:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1beta1/types.go

    	// +optional
    	Suspend *bool `json:"suspend,omitempty" protobuf:"varint,4,opt,name=suspend"`
    
    	// Specifies the job that will be created when executing a CronJob.
    	JobTemplate JobTemplateSpec `json:"jobTemplate" protobuf:"bytes,5,opt,name=jobTemplate"`
    
    	// The number of successful finished jobs to retain.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// Defaults to 3.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pkg/apis/batch/v1beta1/conversion.go

    )
    
    func addConversionFuncs(scheme *runtime.Scheme) error {
    	var err error
    	// Add field label conversions for kinds having selectable nothing but ObjectMeta fields.
    	for _, k := range []string{"Job", "JobTemplate", "CronJob"} {
    		kind := k // don't close over range variables
    		err = scheme.AddFieldLabelConversionFunc(SchemeGroupVersion.WithKind(kind),
    			func(label, value string) (string, string, error) {
    				switch label {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 03 19:47:20 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils.go

    // granularity of 1 minute for scheduling job.
    func getJobFromTemplate2(cj *batchv1.CronJob, scheduledTime time.Time) (*batchv1.Job, error) {
    	labels := copyLabels(&cj.Spec.JobTemplate)
    	annotations := copyAnnotations(&cj.Spec.JobTemplate)
    	// We want job names for a given nominal start time to have a deterministic name to avoid the same job being created twice
    	name := getJobName(cj, scheduledTime)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. pkg/registry/batch/cronjob/storage/storage_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: batch.CronJobSpec{
    			Schedule:          "* * * * ?",
    			ConcurrencyPolicy: batch.AllowConcurrent,
    			JobTemplate: batch.JobTemplateSpec{
    				Spec: batch.JobSpec{
    					Template: api.PodTemplateSpec{
    						Spec: api.PodSpec{
    							RestartPolicy: api.RestartPolicyOnFailure,
    							DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1beta1/generated.pb.go

    		`ConcurrencyPolicy:` + fmt.Sprintf("%v", this.ConcurrencyPolicy) + `,`,
    		`Suspend:` + valueToStringGenerated(this.Suspend) + `,`,
    		`JobTemplate:` + strings.Replace(strings.Replace(this.JobTemplate.String(), "JobTemplateSpec", "JobTemplateSpec", 1), `&`, ``, 1) + `,`,
    		`SuccessfulJobsHistoryLimit:` + valueToStringGenerated(this.SuccessfulJobsHistoryLimit) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/utils_test.go

    			Name:      "mycronjob",
    			Namespace: "snazzycats",
    			UID:       types.UID("1a2b3c"),
    		},
    		Spec: batchv1.CronJobSpec{
    			Schedule:          "* * * * ?",
    			ConcurrencyPolicy: batchv1.AllowConcurrent,
    			JobTemplate: batchv1.JobTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					CreationTimestamp: metav1.Time{Time: scheduledTime},
    					Labels:            map[string]string{"a": "b"},
    				},
    				Spec: batchv1.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/cronjob.yaml.injected

    apiVersion: batch/v2alpha1
    kind: CronJob
    metadata:
      creationTimestamp: null
      name: hellocron
    spec:
      jobTemplate:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pkg/apis/batch/v1/zz_generated.conversion.go

    	out.ConcurrencyPolicy = batch.ConcurrencyPolicy(in.ConcurrencyPolicy)
    	out.Suspend = (*bool)(unsafe.Pointer(in.Suspend))
    	if err := Convert_v1_JobTemplateSpec_To_batch_JobTemplateSpec(&in.JobTemplate, &out.JobTemplate, s); err != nil {
    		return err
    	}
    	out.SuccessfulJobsHistoryLimit = (*int32)(unsafe.Pointer(in.SuccessfulJobsHistoryLimit))
    	out.FailedJobsHistoryLimit = (*int32)(unsafe.Pointer(in.FailedJobsHistoryLimit))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // not apply to already started executions.  Defaults to false.
      // +optional
      optional bool suspend = 4;
    
      // Specifies the job that will be created when executing a CronJob.
      optional JobTemplateSpec jobTemplate = 5;
    
      // The number of successful finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 3.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top