terraform-kubernetes-ebs-csi-driver icon indicating copy to clipboard operation
terraform-kubernetes-ebs-csi-driver copied to clipboard

Terraform module which creates Kubernetes EBS CSI controller resources on AWS EKS.

Results 10 terraform-kubernetes-ebs-csi-driver issues
Sort by recently updated
recently updated
newest added

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [terraform-linters/tflint-ruleset-aws](https://redirect.github.com/terraform-linters/tflint-ruleset-aws) | plugin | minor | `0.27.0` -> `0.33.0` | --- ### Release...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [terraform-aws-modules/iam/aws](https://registry.terraform.io/modules/terraform-aws-modules/iam/aws) ([source](https://redirect.github.com/terraform-aws-modules/terraform-aws-iam)) | module | major | `4.24.1` -> `5.44.2` | --- ###...

In the following line https://github.com/DrFaust92/terraform-kubernetes-ebs-csi-driver/blob/v3.10.0/controller.tf#L37 when `var.csi_controller_tolerations` is empty i.e. zero length, the deployment gets a broad toleration as below. This causes pods to be scheduled even on nodes with...

I have eks cluster 1.24 version. I took this module and started using it. Got an error: ``` │ Error: creating IAM OIDC Provider: EntityAlreadyExists: Provider with url https://oidc.eks.eu-central-1.amazonaws.com/id/2B375A5F893E2A5921B4D7E36C0D1D97 already...

``` module "ebs_csi_driver_controller" { source = "DrFaust92/ebs-csi-driver/kubernetes" version = "3.3.1" enable_volume_snapshot = true enable_volume_resizing = true enable_default_fstype = true ebs_csi_controller_role_name = "${var.cluster_name}-ebs-csi-driver-controller" ebs_csi_controller_role_policy_name_prefix = "${var.cluster_name}-ebs-csi-driver-policy" oidc_url = module.eks.cluster_oidc_issuer_url tags =...

* add complete module example (with VPC and EKS creation) * test snapshot options * test resizer options

documentation
enhancement

Here are a few changes needed to deal with volume multi-attach error when using karpenter with ebs-csi-driver in eks cluster. 1. Actualize node cluster-role permissions 2. Allow empty tolerations for...

I am using the following configuration applied via terraform: ``` module "ebs_csi_driver_controller" { source = "DrFaust92/ebs-csi-driver/kubernetes" version = "3.10.0" # data.aws_iam_openid_connect_provider.eks_oidc.url oidc_url = module.eks.cluster_oidc_issuer_url # Optional ebs_csi_controller_role_name = "ebs-csi-driver-controller" ebs_csi_controller_role_policy_name_prefix...