Package org.cdk8s.plus24.k8s
Interface KubeCsiNodeProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeCsiNodeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-16T03:33:04.004Z") @Stability(Stable) public interface KubeCsiNodeProps extends software.amazon.jsii.JsiiSerializable
CSINode holds information about all CSI drivers installed on a node.CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
KubeCsiNodeProps.Builder
A builder forKubeCsiNodeProps
static class
KubeCsiNodeProps.Jsii$Proxy
An implementation forKubeCsiNodeProps
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static KubeCsiNodeProps.Builder
builder()
default ObjectMeta
getMetadata()
metadata.name must be the Kubernetes node name.CsiNodeSpec
getSpec()
spec is the specification of CSINode.
-
-
-
Method Detail
-
getSpec
@Stability(Stable) @NotNull CsiNodeSpec getSpec()
spec is the specification of CSINode.
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
metadata.name must be the Kubernetes node name.
-
builder
@Stability(Stable) static KubeCsiNodeProps.Builder builder()
- Returns:
- a
KubeCsiNodeProps.Builder
ofKubeCsiNodeProps
-
-