Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ListReplicaSets (0.12 sec)

  1. pkg/controller/deployment/util/deployment_util.go

    type podListFunc func(string, metav1.ListOptions) (*v1.PodList, error)
    
    // ListReplicaSets returns a slice of RSes the given deployment targets.
    // Note that this does NOT attempt to reconcile ControllerRef (adopt/orphan),
    // because only the controller itself should do that.
    // However, it does filter out anything whose ControllerRef doesn't match.
    func ListReplicaSets(deployment *apps.Deployment, getRSList RsListFunc) ([]*apps.ReplicaSet, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    		return
    	}
    	logger.V(4).Info("Pod deleted", "pod", klog.KObj(pod))
    	if d.Spec.Strategy.Type == apps.RecreateDeploymentStrategyType {
    		// Sync if this Deployment now has no more Pods.
    		rsList, err := util.ListReplicaSets(d, util.RsListFromClient(dc.client.AppsV1()))
    		if err != nil {
    			return
    		}
    		podMap, err := dc.getPodMapForDeployment(d, rsList)
    		if err != nil {
    			return
    		}
    		numPods := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top