Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isScalingEvent (0.13 sec)

  1. pkg/controller/deployment/sync.go

    	}
    
    	return status
    }
    
    // isScalingEvent checks whether the provided deployment has been updated with a scaling event
    // by looking at the desired-replicas annotation in the active replica sets of the deployment.
    //
    // rsList should come from getReplicaSetsForDeployment(d).
    func (dc *DeploymentController) isScalingEvent(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    	// make sure that the deployment has cleaned up its rollback spec in subsequent enqueues.
    	if getRollbackTo(d) != nil {
    		return dc.rollback(ctx, d, rsList)
    	}
    
    	scalingEvent, err := dc.isScalingEvent(ctx, d, rsList)
    	if err != nil {
    		return err
    	}
    	if scalingEvent {
    		return dc.sync(ctx, d, rsList)
    	}
    
    	switch d.Spec.Strategy.Type {
    	case apps.RecreateDeploymentStrategyType:
    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