Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for CurrentReplicas (0.34 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2.HorizontalPodAutoscaler.json

                "value": 2,
                "periodSeconds": 3
              }
            ]
          }
        }
      },
      "status": {
        "observedGeneration": 1,
        "lastScaleTime": "2002-01-01T01:01:01Z",
        "currentReplicas": 3,
        "desiredReplicas": 4,
        "currentMetrics": [
          {
            "type": "typeValue",
            "object": {
              "metric": {
                "name": "nameValue",
                "selector": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml

                matchLabelsKey: matchLabelsValue
        resource:
          current:
            averageUtilization: 3
            averageValue: "0"
            value: "0"
          name: nameValue
        type: typeValue
      currentReplicas: 3
      desiredReplicas: 4
      lastScaleTime: "2002-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json

                "value": 2,
                "periodSeconds": 3
              }
            ]
          }
        }
      },
      "status": {
        "observedGeneration": 1,
        "lastScaleTime": "2002-01-01T01:01:01Z",
        "currentReplicas": 3,
        "desiredReplicas": 4,
        "currentMetrics": [
          {
            "type": "typeValue",
            "object": {
              "metric": {
                "name": "nameValue",
                "selector": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta2/conversion_test.go

    				ReadyReplicas:      int32(1),
    				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),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils.go

    func inconsistentStatus(set *apps.StatefulSet, status *apps.StatefulSetStatus) bool {
    	return status.ObservedGeneration > set.Status.ObservedGeneration ||
    		status.Replicas != set.Status.Replicas ||
    		status.CurrentReplicas != set.Status.CurrentReplicas ||
    		status.ReadyReplicas != set.Status.ReadyReplicas ||
    		status.UpdatedReplicas != set.Status.UpdatedReplicas ||
    		status.CurrentRevision != set.Status.CurrentRevision ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/types.go

    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,3,opt,name=readyReplicas"`
    
    	// currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
    	// indicated by currentRevision.
    	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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation.go

    	if status.ReadyReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(fieldPath.Child("readyReplicas"), status.ReadyReplicas, msg))
    	}
    	if status.CurrentReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(fieldPath.Child("currentReplicas"), status.CurrentReplicas, msg))
    	}
    	if status.UpdatedReplicas > 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)
  8. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// +optional
    	LastScaleTime *metav1.Time `json:"lastScaleTime,omitempty" protobuf:"bytes,2,opt,name=lastScaleTime"`
    
    	// currentReplicas is current number of replicas of pods managed by this autoscaler,
    	// as last seen by the autoscaler.
    	CurrentReplicas int32 `json:"currentReplicas" protobuf:"varint,3,opt,name=currentReplicas"`
    
    	// desiredReplicas is the desired number of replicas of pods managed by this autoscaler,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// +optional
    	LastScaleTime *metav1.Time `json:"lastScaleTime,omitempty" protobuf:"bytes,2,opt,name=lastScaleTime"`
    
    	// currentReplicas is the current number of replicas of pods managed by this autoscaler.
    	CurrentReplicas int32 `json:"currentReplicas" protobuf:"varint,3,opt,name=currentReplicas"`
    
    	// desiredReplicas is the  desired number of replicas of pods managed by this autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// +optional
    	LastScaleTime *metav1.Time `json:"lastScaleTime,omitempty" protobuf:"bytes,2,opt,name=lastScaleTime"`
    
    	// currentReplicas is current number of replicas of pods managed by this autoscaler,
    	// as last seen by the autoscaler.
    	CurrentReplicas int32 `json:"currentReplicas" protobuf:"varint,3,opt,name=currentReplicas"`
    
    	// desiredReplicas is the desired number of replicas of pods managed by this autoscaler,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
Back to top