Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SuccessfulDelete (0.11 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2.go

    		return false
    	}
    	// ... and its reference from active list
    	deleteFromActiveList(cj, job.ObjectMeta.UID)
    	recorder.Eventf(cj, corev1.EventTypeNormal, "SuccessfulDelete", "Deleted job %v", job.Name)
    
    	return true
    }
    
    func getRef(object runtime.Object) (*corev1.ObjectReference, error) {
    	return ref.GetReference(scheme.Scheme, object)
    }
    
    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/controller_utils.go

    	FailedDeletePodReason = "FailedDelete"
    	// SuccessfulDeletePodReason is added in an event when a pod for a replica set
    	// is successfully deleted.
    	SuccessfulDeletePodReason = "SuccessfulDelete"
    )
    
    // RSControlInterface is an interface that knows how to add or delete
    // ReplicaSets, as well as increment or decrement them. It is used
    // by the deployment controller to ease testing of actions that it takes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top