Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for updatedReplicas (0.18 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    				}
    			} else {
    				dep, err := appsv1Client.Deployments(d.cfg.Namespace.Name()).Get(context.TODO(), deploymentName, metav1.GetOptions{})
    				if err != nil {
    					return err
    				}
    				if dep.Spec.Replicas == nil || !deploymentComplete(dep) {
    					return fmt.Errorf("rollout is not yet done (updated replicas: %v)", dep.Status.UpdatedReplicas)
    				}
    			}
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_utils.go

    // is set to the empty string. status's currentReplicas is set to updateReplicas and its updateReplicas
    // are set to 0.
    func completeRollingUpdate(set *apps.StatefulSet, status *apps.StatefulSetStatus) {
    	if set.Spec.UpdateStrategy.Type == apps.RollingUpdateStatefulSetStrategyType &&
    		status.UpdatedReplicas == *set.Spec.Replicas &&
    		status.ReadyReplicas == *set.Spec.Replicas &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util.go

    	oldStatus := deployment.Status
    
    	// Old replicas that need to be scaled down
    	oldStatusOldReplicas := oldStatus.Replicas - oldStatus.UpdatedReplicas
    	newStatusOldReplicas := newStatus.Replicas - newStatus.UpdatedReplicas
    
    	return (newStatus.UpdatedReplicas > oldStatus.UpdatedReplicas) ||
    		(newStatusOldReplicas < oldStatusOldReplicas) ||
    		newStatus.ReadyReplicas > deployment.Status.ReadyReplicas ||
    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. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"currentReplicas":    "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
    	"updatedReplicas":    "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"currentReplicas":    "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
    	"updatedReplicas":    "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1/generated.proto

      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by updateRevision.
      optional int32 updatedReplicas = 5;
    
      // currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. pkg/apis/apps/types.go

    	// indicated by currentRevision.
    	CurrentReplicas int32
    
    	// updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
    	// indicated by updateRevision.
    	UpdatedReplicas int32
    
    	// currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    	// sequence [0,currentReplicas).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/generated.proto

      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by updateRevision.
      optional int32 updatedReplicas = 5;
    
      // currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by updateRevision.
      optional int32 updatedReplicas = 5;
    
      // currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by updateRevision.
      optional int32 updatedReplicas = 5;
    
      // currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
Back to top