Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for CurrentReplicas (0.47 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/types.go

    	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.
    	// +optional
    	CurrentReplicas int32 `json:"currentReplicas,omitempty" 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
    - 28.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"readyReplicas":      "readyReplicas is the number of pods created by this StatefulSet controller with a Ready Condition.",
    	"currentReplicas":    "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      optional int32 readyReplicas = 3;
    
      // currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    	out.ObservedGeneration = (*int64)(unsafe.Pointer(in.ObservedGeneration))
    	out.Replicas = in.Replicas
    	out.ReadyReplicas = in.ReadyReplicas
    	out.CurrentReplicas = in.CurrentReplicas
    	out.UpdatedReplicas = in.UpdatedReplicas
    	out.CurrentRevision = in.CurrentRevision
    	out.UpdateRevision = in.UpdateRevision
    	out.CollisionCount = (*int32)(unsafe.Pointer(in.CollisionCount))
    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. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      optional int32 readyReplicas = 3;
    
      // currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    						Name: "some-rc",
    						Kind: "ReplicationController",
    					},
    					MaxReplicas: 10,
    				},
    				Status: autoscaling.HorizontalPodAutoscalerStatus{
    					CurrentReplicas: 4,
    					DesiredReplicas: 5,
    				},
    			},
    			// Columns: Name, Reference, Targets, MinPods, MaxPods, Replicas, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/validation/validation.go

    	status := newAutoscaler.Status
    	allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(status.CurrentReplicas), field.NewPath("status", "currentReplicas"))...)
    	allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(status.DesiredReplicas), field.NewPath("status", "desiredReplicas"))...)
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/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: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/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
    - 52.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"lastScaleTime":      "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.",
    	"currentReplicas":    "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top