-
Notifications
You must be signed in to change notification settings - Fork 127
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
Remove EFS CSI Driver as it is an EKS add-on now #279
Comments
This issue has been automatically marked as stale because it has been open 30 days |
Issue closed due to inactivity. |
This issue has been automatically marked as stale because it has been open 30 days |
Issue closed due to inactivity. |
@askulkarni2 do you have more details about the "how to use" the addon with eks module directly? |
The implementation is the same between the EKS module and this module; any EKS addon listed here can be enabled by specifying the addon configuration under module "eks" {
source = "terraform-aws-modules/eks/aws"
version = "~> 20.0"
# Truncated for brevity ...
cluster_addons = {
coredns = {
most_recent = true
}
kube-proxy = {
most_recent = true
}
vpc-cni = {
most_recent = true
}
aws-efs-csi-driver = {}
}
} module "eks_blueprints_addons" {
source = "aws-ia/eks-blueprints-addons/aws"
version = "~> 1.0"
# Truncated for brevity ...
eks_addons = {
coredns = {
most_recent = true
}
kube-proxy = {
most_recent = true
}
vpc-cni = {
most_recent = true
}
aws-efs-csi-driver = {}
}
} |
@bryantbiggs aha ... nice to know ... I struggled little bit with the 2 locations :-) What is the "best practice"? |
The EKS module has the ability to let users specify |
Community Note
What is the outcome that you are trying to reach?
Now that EFS CSI driver is an EKS add-on we should remove it from blueprints. https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html#workloads-add-ons-available-eks
Describe the solution you would like
Remove it from main.tf.
Describe alternatives you have considered
Additional context
The text was updated successfully, but these errors were encountered: