case class VolumeNodeResources(count: Optional[Int] = Optional.Absent) extends Product with Serializable
VolumeNodeResources is a set of resource limits for scheduling of volumes.
- count
Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.
- Alphabetic
- By Inheritance
- VolumeNodeResources
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
VolumeNodeResources(count: Optional[Int] = Optional.Absent)
- count
Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.
Value Members
- val count: Optional[Int]
-
def
getCount: IO[K8sFailure, Int]
Maximum number of unique volumes managed by the CSI driver that can be used on a node.
Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.