Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for lastSuccessfulTime (0.48 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2.go

    			if cronJob.Status.LastSuccessfulTime == nil {
    				cronJob.Status.LastSuccessfulTime = j.Status.CompletionTime
    				updateStatus = true
    			}
    			if j.Status.CompletionTime != nil && j.Status.CompletionTime.After(cronJob.Status.LastSuccessfulTime.Time) {
    				cronJob.Status.LastSuccessfulTime = j.Status.CompletionTime
    				updateStatus = true
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1beta1/types_swagger_doc_generated.go

    	"active":             "A list of pointers to currently running jobs.",
    	"lastScheduleTime":   "Information when was the last time the job was successfully scheduled.",
    	"lastSuccessfulTime": "Information when was the last time the job successfully completed.",
    }
    
    func (CronJobStatus) SwaggerDoc() map[string]string {
    	return map_CronJobStatus
    }
    
    var map_JobTemplateSpec = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    
      // Information when was the last time the job successfully completed.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastSuccessfulTime = 5;
    }
    
    // JobTemplateSpec describes the data a Job should have when created from a template
    message JobTemplateSpec {
      // Standard object's metadata of the jobs created from this template.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			if tc.ranPreviously && !tc.stillActive {
    				completionTime := tc.jobCreationTime.Add(10 * time.Second)
    				if cjCopy.Status.LastSuccessfulTime == nil || !cjCopy.Status.LastSuccessfulTime.Time.Equal(completionTime) {
    					t.Errorf("cj.status.lastSuccessfulTime: %s expected, got %#v", completionTime, cj.Status.LastSuccessfulTime)
    				}
    			}
    			if len(jc.Jobs) != expectedCreates {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	// Information when was the last time the job successfully completed.
    	// +optional
    	LastSuccessfulTime *metav1.Time `json:"lastSuccessfulTime,omitempty" protobuf:"bytes,5,opt,name=lastSuccessfulTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.LastSuccessfulTime == nil {
    				m.LastSuccessfulTime = &v1.Time{}
    			}
    			if err := m.LastSuccessfulTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1beta1.CronJob.json

            "apiVersion": "apiVersionValue",
            "resourceVersion": "resourceVersionValue",
            "fieldPath": "fieldPathValue"
          }
        ],
        "lastScheduleTime": "2004-01-01T01:01:01Z",
        "lastSuccessfulTime": "2005-01-01T01:01:01Z"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

            "apiVersion": "apiVersionValue",
            "resourceVersion": "resourceVersionValue",
            "fieldPath": "fieldPathValue"
          }
        ],
        "lastScheduleTime": "2004-01-01T01:01:01Z",
        "lastSuccessfulTime": "2005-01-01T01:01:01Z"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.yaml

        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
        uid: uidValue
      lastScheduleTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.json

            "apiVersion": "apiVersionValue",
            "resourceVersion": "resourceVersionValue",
            "fieldPath": "fieldPathValue"
          }
        ],
        "lastScheduleTime": "2004-01-01T01:01:01Z",
        "lastSuccessfulTime": "2005-01-01T01:01:01Z"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.3K bytes
    - Viewed (0)
Back to top