package v1
Type Members
-
final
case class
CrossVersionObjectReference(name: String) extends Product with Serializable
CrossVersionObjectReference contains enough information to let you identify the referred resource.
-
final
case class
HorizontalPodAutoscaler(status: Option[HorizontalPodAutoscalerStatus] = None, spec: Option[HorizontalPodAutoscalerSpec] = None, metadata: Option[ObjectMeta] = None) extends KObject with Product with Serializable
configuration of a horizontal pod autoscaler.
-
final
case class
HorizontalPodAutoscalerList(items: Seq[HorizontalPodAutoscaler], metadata: Option[ListMeta] = None) extends KObject with Product with Serializable
list of horizontal pod autoscaler objects.
-
final
case class
HorizontalPodAutoscalerSpec(maxReplicas: Int, minReplicas: Option[Int] = None, scaleTargetRef: CrossVersionObjectReference, targetCPUUtilizationPercentage: Option[Int] = None) extends Product with Serializable
specification of a horizontal pod autoscaler.
-
final
case class
HorizontalPodAutoscalerStatus(desiredReplicas: Int, lastScaleTime: Option[Time] = None, observedGeneration: Option[Int] = None, currentReplicas: Int, currentCPUUtilizationPercentage: Option[Int] = None) extends Product with Serializable
current status of a horizontal pod autoscaler
-
final
case class
Scale(status: Option[ScaleStatus] = None, spec: Option[ScaleSpec] = None, metadata: Option[ObjectMeta] = None) extends KObject with Product with Serializable
Scale represents a scaling request for a resource.
-
final
case class
ScaleSpec(replicas: Option[Int] = None) extends Product with Serializable
ScaleSpec describes the attributes of a scale subresource.
-
final
case class
ScaleStatus(replicas: Int, selector: Option[String] = None) extends Product with Serializable
ScaleStatus represents the current status of a scale subresource.