Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for controllerrevisions (0.2 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    // the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
    // the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
    // it may be subject to name and representation changes in future releases, and clients should not
    // depend on its stability. It is primarily for internal use by controllers.
    type ControllerRevision struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    // updateHistory figures out what DaemonSet(s) manage a ControllerRevision when the ControllerRevision
    // is updated and wake them up. If anything of the ControllerRevision has changed, we need to  awaken
    // both the old and new DaemonSets.
    func (dsc *DaemonSetsController) updateHistory(logger klog.Logger, old, cur interface{}) {
    	curHistory := cur.(*apps.ControllerRevision)
    	oldHistory := old.(*apps.ControllerRevision)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top