Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 138 for cronjob1 (0.2 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

    {
      "kind": "CronJob",
      "apiVersion": "batch/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

    apiVersion: batch/v1
    kind: CronJob
    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
    - 41.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

    apiVersion: batch/v1beta1
    kind: CronJob
    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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of CronJobs.
      repeated CronJob items = 2;
    }
    
    // CronJobSpec describes how the job execution will look like and when it will actually run.
    message CronJobSpec {
      // The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pkg/registry/batch/cronjob/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package cronjob provides Registry interface and it's RESTStorage
    // implementation for storing CronJob api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 17 08:24:07 UTC 2017
    - 763 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1beta1/zz_generated.deepcopy.go

    func (in *CronJob) DeepCopyInto(out *CronJob) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJob.
    func (in *CronJob) DeepCopy() *CronJob {
    	if in == nil {
    		return 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)
  7. pkg/registry/batch/cronjob/strategy.go

    // PrepareForCreate clears the status of a scheduled job before creation.
    func (cronJobStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	cronJob := obj.(*batch.CronJob)
    	cronJob.Status = batch.CronJobStatus{}
    
    	cronJob.Generation = 1
    
    	pod.DropDisabledTemplateFields(&cronJob.Spec.JobTemplate.Spec.Template, nil)
    }
    
    // PrepareForUpdate clears fields that are not allowed to be set by end users on update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation.go

    	}
    	return allErrs
    }
    
    // ValidateCronJobCreate validates a CronJob on creation and returns an ErrorList with any errors.
    func ValidateCronJobCreate(cronJob *batch.CronJob, opts apivalidation.PodValidationOptions) field.ErrorList {
    	// CronJobs and rcs have the same name validation
    	allErrs := apivalidation.ValidateObjectMeta(&cronJob.ObjectMeta, true, apivalidation.ValidateReplicationControllerName, field.NewPath("metadata"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pkg/apis/batch/v1beta1/defaults_test.go

    )
    
    func TestSetDefaultCronJob(t *testing.T) {
    	tests := map[string]struct {
    		original *batchv1beta1.CronJob
    		expected *batchv1beta1.CronJob
    	}{
    		"empty batchv1beta1.CronJob should default batchv1beta1.ConcurrencyPolicy and Suspend": {
    			original: &batchv1beta1.CronJob{},
    			expected: &batchv1beta1.CronJob{
    				Spec: batchv1beta1.CronJobSpec{
    					ConcurrencyPolicy:          batchv1beta1.AllowConcurrent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/utils_test.go

    		name                  string
    		cj                    *batchv1.CronJob
    		includeSDS            bool
    		now                   time.Time
    		expectedEarliestTime  time.Time
    		expectedRecentTime    *time.Time
    		expectedTooManyMissed missedSchedulesType
    		wantErr               bool
    	}{
    		{
    			name: "now before next schedule",
    			cj: &batchv1.CronJob{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top