Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for CurrentReplicas (0.27 sec)

  1. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScaleTime = 2;
    
      // currentReplicas is current number of replicas of pods managed by this autoscaler,
      // as last seen by the autoscaler.
      // +optional
      optional int32 currentReplicas = 3;
    
      // desiredReplicas is the desired number of replicas of pods managed by this autoscaler,
      // as last calculated by the autoscaler.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScaleTime = 2;
    
      // currentReplicas is current number of replicas of pods managed by this autoscaler,
      // as last seen by the autoscaler.
      optional int32 currentReplicas = 3;
    
      // desiredReplicas is the desired number of replicas of pods managed by this autoscaler,
      // as last calculated by the autoscaler.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta2/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
    - 21K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/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
    - 34.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScaleTime = 2;
    
      // currentReplicas is the current number of replicas of pods managed by this autoscaler.
      optional int32 currentReplicas = 3;
    
      // desiredReplicas is the  desired number of replicas of pods managed by this autoscaler.
      optional int32 desiredReplicas = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScaleTime = 2;
    
      // currentReplicas is the current number of replicas of pods managed by this autoscaler.
      optional int32 currentReplicas = 3;
    
      // desiredReplicas is the  desired number of replicas of pods managed by this autoscaler.
      optional int32 desiredReplicas = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/zz_generated.conversion.go

    	if err := metav1.Convert_int64_To_Pointer_int64(&in.ObservedGeneration, &out.ObservedGeneration, s); err != nil {
    		return err
    	}
    	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
    - 66.7K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    	if err := metav1.Convert_int64_To_Pointer_int64(&in.ObservedGeneration, &out.ObservedGeneration, s); err != nil {
    		return err
    	}
    	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
    - 74.2K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    	if obj.Spec.MinReplicas != nil {
    		minPods = fmt.Sprintf("%d", *obj.Spec.MinReplicas)
    	}
    	maxPods := obj.Spec.MaxReplicas
    	currentReplicas := obj.Status.CurrentReplicas
    	row.Cells = append(row.Cells, obj.Name, reference, metrics, minPods, int64(maxPods), int64(currentReplicas), translateTimestampSince(obj.CreationTimestamp))
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/types.go

    	// used by the autoscaler to control how often the number of pods is changed.
    	// +optional
    	LastScaleTime *metav1.Time
    
    	// CurrentReplicas is current number of replicas of pods managed by this autoscaler,
    	// as last seen by the autoscaler.
    	CurrentReplicas int32
    
    	// DesiredReplicas is the desired number of replicas of pods managed by this autoscaler,
    	// as last calculated by the autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
Back to top