Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for lastSuccessfulTime (0.24 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. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.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: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top