case class CSINodeSpec(drivers: Vector[CSINodeDriver]) extends Product with Serializable
CSINodeSpec holds information about the specification of all CSI drivers installed on a node
- drivers
drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CSINodeSpec
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
CSINodeSpec(drivers: Vector[CSINodeDriver])
- drivers
drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.
Value Members
- val drivers: Vector[CSINodeDriver]
-
def
getDrivers: IO[K8sFailure, Vector[CSINodeDriver]]
drivers is a list of information of all CSI Drivers existing on a node.
drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.
This effect always succeeds, it is safe to use the field drivers directly.