Package org.cdk8s.plus25.k8s
Interface GlusterfsVolumeSource
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GlusterfsVolumeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.544Z") @Stability(Stable) public interface GlusterfsVolumeSource extends software.amazon.jsii.JsiiSerializable
Represents a Glusterfs mount that lasts the lifetime of a pod.Glusterfs volumes do not support ownership management or SELinux relabeling.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classGlusterfsVolumeSource.BuilderA builder forGlusterfsVolumeSourcestatic classGlusterfsVolumeSource.Jsii$ProxyAn implementation forGlusterfsVolumeSource
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static GlusterfsVolumeSource.Builderbuilder()StringgetEndpoints()endpoints is the endpoint name that details Glusterfs topology.StringgetPath()path is the Glusterfs volume path.default BooleangetReadOnly()readOnly here will force the Glusterfs volume to be mounted with read-only permissions.
-
-
-
Method Detail
-
getEndpoints
@Stability(Stable) @NotNull String getEndpoints()
endpoints is the endpoint name that details Glusterfs topology.More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
-
getPath
@Stability(Stable) @NotNull String getPath()
path is the Glusterfs volume path.More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
-
getReadOnly
@Stability(Stable) @Nullable default Boolean getReadOnly()
readOnly here will force the Glusterfs volume to be mounted with read-only permissions.Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
Default: false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
-
builder
@Stability(Stable) static GlusterfsVolumeSource.Builder builder()
- Returns:
- a
GlusterfsVolumeSource.BuilderofGlusterfsVolumeSource
-
-