Package org.cdk8s.plus25.k8s
Interface KubeCsiNodeProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeCsiNodeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.604Z") @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 classKubeCsiNodeProps.BuilderA builder forKubeCsiNodePropsstatic classKubeCsiNodeProps.Jsii$ProxyAn implementation forKubeCsiNodeProps
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static KubeCsiNodeProps.Builderbuilder()default ObjectMetagetMetadata()metadata.name must be the Kubernetes node name.CsiNodeSpecgetSpec()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.BuilderofKubeCsiNodeProps
-
-