Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for jobTemplate (0.24 sec)

  1. staging/src/k8s.io/api/batch/v1/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. Value must be non-negative integer.
    	// Defaults to 3.
    	// +optional
    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. pkg/printers/internalversion/printers_test.go

    					Name:              "cronjob1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: batch.CronJobSpec{
    					Schedule: "0/5 * * * ?",
    					Suspend:  &suspend,
    					JobTemplate: batch.JobTemplateSpec{
    						Spec: batch.JobSpec{
    							Completions: &completions,
    							Template: api.PodTemplateSpec{
    								Spec: api.PodSpec{
    									Containers: []api.Container{
    										{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	if options.Wide {
    		names, images := layoutContainerCells(obj.Spec.JobTemplate.Spec.Template.Spec.Containers)
    		row.Cells = append(row.Cells, names, images, metav1.FormatLabelSelector(obj.Spec.JobTemplate.Spec.Selector))
    	}
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "The number of failed finished jobs to retain. Value must be non-negative integer. Defaults to 1.",
                "format": "int32",
                "type": "integer"
              },
              "jobTemplate": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobTemplateSpec"
                  }
                ],
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"jobTemplate": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Specifies the job that will be created when executing a CronJob.",
    							Default:     map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              "description": "The number of failed finished jobs to retain. Value must be non-negative integer. Defaults to 1.",
              "format": "int32",
              "type": "integer"
            },
            "jobTemplate": {
              "$ref": "#/definitions/io.k8s.api.batch.v1.JobTemplateSpec",
              "description": "Specifies the job that will be created when executing a CronJob."
            },
            "schedule": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top