Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,430 for paused (0.24 sec)

  1. pkg/controller/deployment/sync.go

    	}
    
    	// Clean up the deployment when it's paused and no rollback is in flight.
    	if d.Spec.Paused && getRollbackTo(d) == nil {
    		if err := dc.cleanupDeployment(ctx, oldRSs, d); err != nil {
    			return err
    		}
    	}
    
    	allRSs := append(oldRSs, newRS)
    	return dc.syncDeploymentStatus(ctx, allRSs, newRS, d)
    }
    
    // checkPausedConditions checks if the given deployment is paused or not and adds an appropriate condition.
    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. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// Defaults to 2.
    	// +optional
    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
    
    	// paused indicates that the deployment is paused.
    	// +optional
    	Paused bool `json:"paused,omitempty" protobuf:"varint,7,opt,name=paused"`
    
    	// DEPRECATED.
    	// rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
    	// +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)
  3. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 2.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            }
    
            override fun pause(): WritingState {
                removeListener(fingerprintWriter)
                return Paused(fingerprintWriter, buildScopedSpoolFile, projectScopedSpoolFile)
            }
    
            override fun dispose() =
                pause().dispose()
        }
    
        private
        inner class Paused(
            private val fingerprintWriter: ConfigurationCacheFingerprintWriter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 2.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +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)
  6. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"revisionHistoryLimit":    "revisionHistoryLimit is the number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2.",
    	"paused":                  "paused indicates that the deployment is paused.",
    	"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)
  7. pkg/controller/deployment/util/deployment_util.go

    	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"
    	// ResumedDeployReason is added in a deployment when it is resumed. Useful for not failing accidentally
    	// deployments that paused amidst a rollout and are bounded by a deadline.
    	ResumedDeployReason = "DeploymentResumed"
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1/conversion_test.go

    				MinReadySeconds:      2,
    				Paused:               true,
    				Template: api.PodTemplateSpec{
    					Spec: api.PodSpec{
    						SecurityContext: new(api.PodSecurityContext),
    					},
    				},
    			},
    			deploymentSpec2: &appsv1.DeploymentSpec{
    				Replicas:             replica,
    				RevisionHistoryLimit: revisionHistoryLimit,
    				MinReadySeconds:      2,
    				Paused:               true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta2/conversion_test.go

    				MinReadySeconds:      2,
    				Paused:               true,
    				Template: api.PodTemplateSpec{
    					Spec: api.PodSpec{
    						SecurityContext: new(api.PodSecurityContext),
    					},
    				},
    			},
    			deploymentSpec2: &v1beta2.DeploymentSpec{
    				Replicas:             replica,
    				RevisionHistoryLimit: revisionHistoryLimit,
    				MinReadySeconds:      2,
    				Paused:               true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  10. pkg/apis/apps/types.go

    	// "retaining all old ReplicaSets".
    	// +optional
    	RevisionHistoryLimit *int32
    
    	// Indicates that the deployment is paused and will not be processed by the
    	// deployment controller.
    	// +optional
    	Paused bool
    
    	// DEPRECATED.
    	// The config this deployment is rolling back to. Will be cleared after rollback is done.
    	// +optional
    	RollbackTo *RollbackConfig
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
Back to top