Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for updatedReplicas (1.12 sec)

  1. pkg/apis/apps/validation/validation_test.go

    		currentReplicas: 2,
    		updatedReplicas: 1,
    		expectedErr:     true,
    	}, {
    		name:            "invalid readyReplicas",
    		replicas:        3,
    		readyReplicas:   -1,
    		currentReplicas: 2,
    		updatedReplicas: 1,
    		expectedErr:     true,
    	}, {
    		name:            "invalid currentReplicas",
    		replicas:        3,
    		readyReplicas:   3,
    		currentReplicas: -1,
    		updatedReplicas: 1,
    		expectedErr:     true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types.go

    	CurrentReplicas int32 `json:"currentReplicas,omitempty" protobuf:"varint,4,opt,name=currentReplicas"`
    
    	// updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
    	// indicated by updateRevision.
    	UpdatedReplicas int32 `json:"updatedReplicas,omitempty" protobuf:"varint,5,opt,name=updatedReplicas"`
    
    	// 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 Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fieldPath.Child("currentReplicas"), status.CurrentReplicas, msg))
    	}
    	if status.UpdatedReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(fieldPath.Child("updatedReplicas"), status.UpdatedReplicas, msg))
    	}
    	if status.AvailableReplicas > status.Replicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    	out.ObservedGeneration = in.ObservedGeneration
    	out.Replicas = in.Replicas
    	out.UpdatedReplicas = in.UpdatedReplicas
    	out.ReadyReplicas = in.ReadyReplicas
    	out.AvailableReplicas = in.AvailableReplicas
    	out.UnavailableReplicas = in.UnavailableReplicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1/conversion_test.go

    				CurrentReplicas:    int32(3),
    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    				UpdateRevision:     "23456",
    				ObservedGeneration: observedGeneration,
    			},
    			stsStatus2: &appsv1.StatefulSetStatus{
    				Replicas:           int32(3),
    				ReadyReplicas:      int32(1),
    				CurrentReplicas:    int32(3),
    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // +optional
      optional int32 replicas = 2;
    
      // updatedReplicas is the total number of non-terminated pods targeted by this deployment that have the desired template spec.
      // +optional
      optional int32 updatedReplicas = 3;
    
      // readyReplicas is the number of pods targeted by this Deployment controller with a Ready Condition.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control.go

    			"replicas", currentStatus.Replicas,
    			"readyReplicas", currentStatus.ReadyReplicas,
    			"currentReplicas", currentStatus.CurrentReplicas,
    			"updatedReplicas", currentStatus.UpdatedReplicas)
    	}
    
    	switch {
    	case err != nil && statusErr != nil:
    		logger.Error(statusErr, "Could not update status", "statefulSet", klog.KObj(set))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta2/conversion_test.go

    				CurrentReplicas:    int32(3),
    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    				UpdateRevision:     "23456",
    				ObservedGeneration: observedGeneration,
    			},
    			stsStatus2: &v1beta2.StatefulSetStatus{
    				Replicas:           int32(3),
    				ReadyReplicas:      int32(1),
    				CurrentReplicas:    int32(3),
    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"replicas":            "replicas is the total number of non-terminated pods targeted by this deployment (their labels match the selector).",
    	"updatedReplicas":     "updatedReplicas is the total number of non-terminated pods targeted by this deployment that have the desired template spec.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // +optional
      optional int32 replicas = 2;
    
      // updatedReplicas is the total number of non-terminated pods targeted by this deployment that have the desired template spec.
      // +optional
      optional int32 updatedReplicas = 3;
    
      // readyReplicas is the number of pods targeted by this Deployment controller with a Ready Condition.
      // +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)
Back to top