Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for oldObjectMeta (0.18 sec)

  1. pkg/controller/statefulset/stateful_set.go

    	if curControllerRef != nil {
    		set := ssc.resolveControllerRef(curPod.Namespace, curControllerRef)
    		if set == nil {
    			return
    		}
    		logger.V(4).Info("Pod objectMeta updated", "pod", klog.KObj(curPod), "oldObjectMeta", oldPod.ObjectMeta, "newObjectMeta", curPod.ObjectMeta)
    		if oldPod.Status.Phase != curPod.Status.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set.go

    	if curControllerRef != nil {
    		rs := rsc.resolveControllerRef(curPod.Namespace, curControllerRef)
    		if rs == nil {
    			return
    		}
    		logger.V(4).Info("Pod objectMeta updated.", "pod", klog.KObj(oldPod), "oldObjectMeta", oldPod.ObjectMeta, "curObjectMeta", curPod.ObjectMeta)
    		rsc.enqueueRS(rs)
    		// TODO: MinReadySeconds in the Pod will generate an Available condition to be added in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top