Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for calculateStatus (0.61 sec)

  1. pkg/controller/replicaset/replica_set_utils_test.go

    				Replicas:             1,
    				FullyLabeledReplicas: 1,
    				ReadyReplicas:        1,
    				AvailableReplicas:    0,
    			},
    		},
    	}
    
    	for _, test := range rsStatusTests {
    		replicaSetStatus := calculateStatus(test.replicaset, test.filteredPods, nil)
    		if !reflect.DeepEqual(replicaSetStatus, test.expectedReplicaSetStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 19 20:18:23 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_utils.go

    			// If the GET fails we can't trust status.Replicas anymore. This error
    			// is bound to be more interesting than the update failure.
    			return nil, getErr
    		}
    	}
    
    	return nil, updateErr
    }
    
    func calculateStatus(rs *apps.ReplicaSet, filteredPods []*v1.Pod, manageReplicasErr error) apps.ReplicaSetStatus {
    	newStatus := rs.Status
    	// Count the number of pods that have labels matching the labels of the pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. pkg/controller/deployment/progress.go

    // we shouldn't try to estimate any progress.
    func (dc *DeploymentController) syncRolloutStatus(ctx context.Context, allRSs []*apps.ReplicaSet, newRS *apps.ReplicaSet, d *apps.Deployment) error {
    	newStatus := calculateStatus(allRSs, newRS, d)
    
    	// If there is no progressDeadlineSeconds set, remove any Progressing condition.
    	if !util.HasProgressDeadline(d) {
    		util.RemoveDeploymentCondition(&newStatus, apps.DeploymentProgressing)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top