Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SetDeploymentCondition (0.28 sec)

  1. pkg/controller/deployment/progress.go

    				msg = fmt.Sprintf("ReplicaSet %q has successfully progressed.", newRS.Name)
    			}
    			condition := util.NewDeploymentCondition(apps.DeploymentProgressing, v1.ConditionTrue, util.NewRSAvailableReason, msg)
    			util.SetDeploymentCondition(&newStatus, *condition)
    
    		case util.DeploymentProgressing(d, &newStatus):
    			// If there is any progress made, continue by not checking if the deployment failed. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. pkg/controller/deployment/sync.go

    		deploymentutil.SetDeploymentCondition(&d.Status, *condition)
    		needsUpdate = true
    	} else if !d.Spec.Paused && pausedCondExists {
    		condition := deploymentutil.NewDeploymentCondition(apps.DeploymentProgressing, v1.ConditionUnknown, deploymentutil.ResumedDeployReason, "Deployment is resumed")
    		deploymentutil.SetDeploymentCondition(&d.Status, *condition)
    		needsUpdate = true
    	}
    
    	if !needsUpdate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util.go

    		if c.Type == condType {
    			return &c
    		}
    	}
    	return nil
    }
    
    // SetDeploymentCondition updates the deployment to include the provided condition. If the condition that
    // we are about to add already exists and has the same status and reason then we are not going to update.
    func SetDeploymentCondition(status *apps.DeploymentStatus, condition apps.DeploymentCondition) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. pkg/controller/deployment/util/deployment_util_test.go

    			expectedStatus: &apps.DeploymentStatus{Conditions: []apps.DeploymentCondition{condProgressing2()}},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			SetDeploymentCondition(test.status, test.cond)
    			if !reflect.DeepEqual(test.status, test.expectedStatus) {
    				t.Errorf("%s: expected status: %v, got: %v", test.name, test.expectedStatus, test.status)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
Back to top