case class HorizontalPodAutoscalerStatus(currentCPUUtilizationPercentage: Optional[Int] = Optional.Absent, currentReplicas: Int, desiredReplicas: Int, lastScaleTime: Optional[Time] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent) extends Product with Serializable

current status of a horizontal pod autoscaler

currentCPUUtilizationPercentage

current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

currentReplicas

current number of replicas of pods managed by this autoscaler.

desiredReplicas

desired number of replicas of pods managed by this autoscaler.

observedGeneration

most recent generation observed by this autoscaler.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HorizontalPodAutoscalerStatus
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HorizontalPodAutoscalerStatus(currentCPUUtilizationPercentage: Optional[Int] = Optional.Absent, currentReplicas: Int, desiredReplicas: Int, lastScaleTime: Optional[Time] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent)

    currentCPUUtilizationPercentage

    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

    currentReplicas

    current number of replicas of pods managed by this autoscaler.

    desiredReplicas

    desired number of replicas of pods managed by this autoscaler.

    observedGeneration

    most recent generation observed by this autoscaler.

Value Members

  1. val currentCPUUtilizationPercentage: Optional[Int]
  2. val currentReplicas: Int
  3. val desiredReplicas: Int
  4. def getCurrentCPUUtilizationPercentage: IO[K8sFailure, Int]

    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g.

    current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  5. def getCurrentReplicas: IO[K8sFailure, Int]

    current number of replicas of pods managed by this autoscaler.

    current number of replicas of pods managed by this autoscaler.

    This effect always succeeds, it is safe to use the field currentReplicas directly.

  6. def getDesiredReplicas: IO[K8sFailure, Int]

    desired number of replicas of pods managed by this autoscaler.

    desired number of replicas of pods managed by this autoscaler.

    This effect always succeeds, it is safe to use the field desiredReplicas directly.

  7. def getLastScaleTime: IO[K8sFailure, Time]

    Gets lastScaleTime.

    Gets lastScaleTime.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  8. def getObservedGeneration: IO[K8sFailure, Long]

    most recent generation observed by this autoscaler.

    most recent generation observed by this autoscaler.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  9. val lastScaleTime: Optional[Time]
  10. val observedGeneration: Optional[Long]