EFS CSI Driver Amazon EKS Add-on¶
The EFS CSI Driver Amazon EKS Add-on
provides a CSI interface that allows Kubernetes clusters running on AWS to manage the lifecycle of Amazon EFS volumes for persistent storage.
EFS CSI driver supports both dynamic and static provisioning of storage.
A couple of things to note:
- Driver is not compatible with Windows-based container images
- The number of replicas to be deployed must be less or equal to the number of nodes in the cluster
For more information on the driver, please review the user guide.
Prerequisites¶
- The EFS file system itself must be created in AWS separately as the driver uses the EFS for storage, but it does not create it. You can create an EFS file system using the
CreateEfsFileSystemProvider
, e.g.:.resourceProvider("efs-file-system", new CreateEfsFileSystemProvider({name: 'efs-file-system'}))
Usage¶
import 'source-map-support/register';
import * as cdk from 'aws-cdk-lib';
import * as blueprints from '@aws-quickstart/eks-blueprints';
const app = new cdk.App();
const addOn = new blueprints.addons.EfsCsiDriverAddOn();
const blueprint = blueprints.EksBlueprint.builder()
.version("auto")
.addOns(addOn)
.build(app, 'my-stack-name');
Configuration Options¶
version
: Version of the EFS CSI Driver add-on to be installed. Version 2.2.3 will be installed by default if a value is not providedreplicaCount
: Number of replicas to be deployed. If not provided, two replicas will be deployed. Note that the number of replicas should be less than or equal to the number of nodes in the cluster otherwise some pods will be left of pending statekmsKeys
: List of KMS keys used for encryption-at-rest, so that the IAM policy can be updated to allow the EFS CSI driver to access the keys
Validation¶
To validate that EFS CSI Driver add-on is installed properly, ensure that the ebs pods are running in the cluster
kubectl get pods -n kube-system | grep efs
# Output
efs-csi-controller-7c9bd5d86d-v7jtk 3/3 Running 0 155m
efs-csi-node-2c29j 3/3 Running 0 155m
Additionally, the driver documentation shows how to create an EFS file system to test the driver
Functionality¶
Applies the EFS CSI Driver add-on to an Amazon EKS cluster.
Notes¶
If you run into this error: Output: Could not start amazon-efs-mount-watchdog, unrecognized init system "aws-efs-csi-dri" b'mount.nfs4: access denied by server while mounting 127.0.0.1:/'
Take a look at this workshop which shows you how to set up KMS keys for EFS and EBS: https://catalog.us-east-1.prod.workshops.aws/workshops/90c9d1eb-71a1-4e0e-b850-dba04ae92887/en-US/security/065-data-encryption/1-stack-setup.
Similarly, if you face a mounting issue, take a look at this thread regarding EFS mounting issues: https://repost.aws/knowledge-center/eks-troubleshoot-efs-volume-mount-issues.