The Mountpoint for Scality S3 Container Storage Interface (CSI) Driver allows your Kubernetes applications to access Scality S3 objects through a file system interface. Built on Mountpoint for Amazon S3, the Mountpoint CSI driver presents a Scality S3 bucket as a storage volume accessible by containers in your Kubernetes cluster. The Mountpoint CSI driver implements the CSI specification for container orchestrators (CO) to manage storage volumes.
- Static Provisioning - Associate an existing S3 bucket with a PersistentVolume (PV) for consumption within Kubernetes.
- Mount Options - Mount options can be specified in the PersistentVolume (PV) resource to define how the volume should be mounted. For Mountpoint-specific options, take a look at the Mountpoint docs for configuration.
Mountpoint for Amazon S3 does not implement all the features of a POSIX file system, and there are some differences that may affect compatibility with your application. See Mountpoint file system behavior for a detailed description of Mountpoint's behavior and POSIX support and how they could affect your application.
Driver Version | GHCR Public Image |
---|---|
v0.1.0 | ghcr.io/scality/mountpoint-s3-csi-driver |
The S3 endpoint URL (node.s3EndpointUrl
) is a required parameter when installing the CSI driver via Helm.
This URL specifies the endpoint for your S3 service. The driver will not function without this parameter and the Helm
installation will fail if it's not provided.
Example:
helm install mountpoint-s3 ./charts/scality-mountpoint-s3-csi-driver \
--set node.s3EndpointUrl=https://s3.your-scality-cluster.com
The Mountpoint for S3 CSI Driver follows semantic versioning. The version will be bumped following the rules below:
- Significant breaking changes will be released as a
MAJOR
update. - New features will be released as a
MINOR
update. - Bug or vulnerability fixes will be released as a
PATCH
update.
The Mountpoint for S3 CSI Driver is compatible with Kubernetes versions v1.23+ and implements the CSI Specification v1.8.0. The driver supports x86-64 and arm64 architectures.