Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix CreateEfsFileSystemProvider args #1083

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/addons/efs-csi-driver.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For more information on the driver, please review the [user guide](https://docs.

## 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('efs-file-system'))`
- 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

Expand Down Expand Up @@ -64,4 +64,4 @@ If you run into this error: `Output: Could not start amazon-efs-mount-watchdog,

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>.
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>.
Loading