Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for progressDeadlineSeconds (0.76 sec)

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

    		nowFn func() time.Time
    
    		expected bool
    	}{
    		{
    			name: "nil progressDeadlineSeconds specified - no timeout",
    
    			d:        deployment(apps.DeploymentProgressing, v1.ConditionTrue, "", null, timeFn(1, 9)),
    			nowFn:    func() time.Time { return timeFn(1, 20) },
    			expected: false,
    		},
    		{
    			name: "infinite progressDeadlineSeconds specified - no timeout",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// 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
    	ProgressDeadlineSeconds *int32 `json:"progressDeadlineSeconds,omitempty" protobuf:"varint,9,opt,name=progressDeadlineSeconds"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/zz_generated.deepcopy.go

    	if in.RevisionHistoryLimit != nil {
    		in, out := &in.RevisionHistoryLimit, &out.RevisionHistoryLimit
    		*out = new(int32)
    		**out = **in
    	}
    	if in.ProgressDeadlineSeconds != nil {
    		in, out := &in.ProgressDeadlineSeconds, &out.ProgressDeadlineSeconds
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 23.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/zz_generated.deepcopy.go

    	if in.RevisionHistoryLimit != nil {
    		in, out := &in.RevisionHistoryLimit, &out.RevisionHistoryLimit
    		*out = new(int32)
    		**out = **in
    	}
    	if in.ProgressDeadlineSeconds != nil {
    		in, out := &in.ProgressDeadlineSeconds, &out.ProgressDeadlineSeconds
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. pkg/apis/apps/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.RollbackTo != nil {
    		in, out := &in.RollbackTo, &out.RollbackTo
    		*out = new(RollbackConfig)
    		**out = **in
    	}
    	if in.ProgressDeadlineSeconds != nil {
    		in, out := &in.ProgressDeadlineSeconds, &out.ProgressDeadlineSeconds
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 24.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.RollbackTo != nil {
    		in, out := &in.RollbackTo, &out.RollbackTo
    		*out = new(RollbackConfig)
    		**out = **in
    	}
    	if in.ProgressDeadlineSeconds != nil {
    		in, out := &in.ProgressDeadlineSeconds, &out.ProgressDeadlineSeconds
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
      optional RollbackConfig rollbackTo = 8;
    
      // progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"rollbackTo":              "DEPRECATED. rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
      optional RollbackConfig rollbackTo = 8;
    
      // progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      minReadySeconds: 5
      paused: true
      progressDeadlineSeconds: 9
      replicas: 1
      revisionHistoryLimit: 6
      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
          - valuesValue
        matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top