2025-12-04

New Feature: S3 CSI Driver for EKS Clusters

#add-on  #kubernetes  #AWS  #S3 

We are excited to announce support for the S3 Container Storage Interface (CSI) Driver on our EKS clusters. This new feature allows Kubernetes workloads to seamlessly interact with Amazon S3 storage, enabling applications to read and write data directly to S3 buckets as if they were local volumes.

How to Enable S3 CSI Driver

The S3 CSI Driver can be enabled through our cluster definition files. Simply add the following configuration to your EKS cluster setup:

  aws_s3_csi_driver:
    enabled: true
    bucketNames:
      - my-application-bucket

Replace my-application-bucket with the name of your S3 bucket. You can specify multiple buckets if needed.