Skip to content

Commit

Permalink
Merge pull request #1550 from alphagov/add-aws-efs-csi-driver
Browse files Browse the repository at this point in the history
Add AWS EFS CSI Driver
  • Loading branch information
nimalank7 authored Dec 12, 2024
2 parents 4d8a271 + 2a5ce9d commit b3d1fc0
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
24 changes: 24 additions & 0 deletions terraform/deployments/cluster-services/aws_efs_csi_driver.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
resource "helm_release" "efs_csi_driver" {
chart = "aws-efs-csi-driver"
name = "aws-efs-csi-driver"
namespace = "kube-system"
repository = "https://kubernetes-sigs.github.io/aws-efs-csi-driver"
version = "3.1.1" # TODO: Dependabot or equivalent so this doesn't get neglected.

values = [yamlencode({
controller = {
serviceAccount = {
create = true
name = data.tfe_outputs.cluster_infrastructure.nonsensitive_values.aws_efs_csi_driver_controller_service_account_name
annotations = {
"eks.amazonaws.com/role-arn" = data.tfe_outputs.cluster_infrastructure.nonsensitive_values.aws_efs_csi_driver_iam_role_arn
}
}
}
storageClasses = [{
name = "efs-sc"
apiVersion = "storage.k8s.io/v1"
reclaimPolicy = "Retain"
}]
})]
}
5 changes: 5 additions & 0 deletions terraform/deployments/cluster-services/remote.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@ data "tfe_outputs" "vpc" {
organization = "govuk"
workspace = "vpc-${var.govuk_environment}"
}

data "tfe_outputs" "govuk_publishing_infrastructure" {
organization = "govuk"
workspace = "govuk-publishing-infrastructure-${var.govuk_environment}"
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
output "eks_ingress_www_origin_security_group_name" {
value = aws_security_group.eks_ingress_www_origin.name
}

output "assets_efs_id" {
description = "EFS Filesystem ID for assets"
value = aws_efs_file_system.assets_efs.id
}

0 comments on commit b3d1fc0

Please sign in to comment.