Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for ProgressDeadlineExceeded (0.27 sec)

  1. operator/pkg/verifier/verify_test.go

    		},
    	}
    
    	deadlineExceededDeployment = appsv1.Deployment{
    		Status: appsv1.DeploymentStatus{
    			Conditions: []appsv1.DeploymentCondition{
    				{
    					Type:   appsv1.DeploymentProgressing,
    					Reason: "ProgressDeadlineExceeded",
    				},
    			},
    		},
    	}
    )
    
    func TestGetDeploymentStatus(t *testing.T) {
    	errCases := []*appsv1.Deployment{
    		&scaleUpRollingDeployment,
    		&deletingOldRollingDeployment,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. operator/pkg/verifier/k8s_util.go

    )
    
    func verifyDeploymentStatus(deployment *appsv1.Deployment) error {
    	cond := getDeploymentCondition(deployment.Status, appsv1.DeploymentProgressing)
    	if cond != nil && cond.Reason == "ProgressDeadlineExceeded" {
    		return fmt.Errorf("deployment %q exceeded its progress deadline", deployment.Name)
    	}
    	if deployment.Spec.Replicas != nil && deployment.Status.UpdatedReplicas < *deployment.Spec.Replicas {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util.go

    	NewRSAvailableReason = "NewReplicaSetAvailable"
    	// TimedOutReason is added in a deployment when its newest replica set fails to show any progress
    	// within the given deadline (progressDeadlineSeconds).
    	TimedOutReason = "ProgressDeadlineExceeded"
    	// PausedDeployReason is added in a deployment when it is paused. Lack of progress shouldn't be
    	// estimated once a deployment is paused.
    	PausedDeployReason = "DeploymentPaused"
    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. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // is considered to be failed. The deployment controller will continue to
      // process failed deployments and a condition with a ProgressDeadlineExceeded
      // reason will be surfaced in the deployment status. Note that progress will
      // not be estimated during the time a deployment is paused. Defaults to 600s.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    }
    
    func (DeploymentSpec) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // is considered to be failed. The deployment controller will continue to
      // process failed deployments and a condition with a ProgressDeadlineExceeded
      // reason will be surfaced in the deployment status. Note that progress will
      // not be estimated during the time a deployment is paused. Defaults to 600s.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"progressDeadlineSeconds": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.",
    }
    
    func (DeploymentSpec) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// is considered to be failed. The deployment controller will continue to
    	// process failed deployments and a condition with a ProgressDeadlineExceeded
    	// reason will be surfaced in the deployment status. Note that progress will
    	// not be estimated during the time a deployment is paused. Defaults to 600s.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"progressDeadlineSeconds": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.",
    }
    
    func (DeploymentSpec) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1/generated.proto

      // The maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
      // process failed deployments and a condition with a ProgressDeadlineExceeded
      // reason will be surfaced in the deployment status. Note that progress will
      // not be estimated during the time a deployment is paused. Defaults to 600s.
      optional int32 progressDeadlineSeconds = 9;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top