Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for CurrentReplicas (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/autoscaling/v2beta1/zz_generated.conversion.go

    	out.ObservedGeneration = (*int64)(unsafe.Pointer(in.ObservedGeneration))
    	out.LastScaleTime = (*metav1.Time)(unsafe.Pointer(in.LastScaleTime))
    	out.CurrentReplicas = in.CurrentReplicas
    	out.DesiredReplicas = in.DesiredReplicas
    	if in.CurrentMetrics != nil {
    		in, out := &in.CurrentMetrics, &out.CurrentMetrics
    		*out = make([]autoscaling.MetricStatus, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 42.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/apis/autoscaling/v1/zz_generated.conversion.go

    	out.ObservedGeneration = (*int64)(unsafe.Pointer(in.ObservedGeneration))
    	out.LastScaleTime = (*metav1.Time)(unsafe.Pointer(in.LastScaleTime))
    	out.CurrentReplicas = in.CurrentReplicas
    	out.DesiredReplicas = in.DesiredReplicas
    	// WARNING: in.CurrentCPUUtilizationPercentage requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 43.7K bytes
    - Viewed (0)
Back to top