Skip to content

Commit

Permalink
disable snapshotter by default and fix the typo
Browse files Browse the repository at this point in the history
  • Loading branch information
baixiac committed Dec 12, 2023
1 parent 69d3b3c commit 7a52c81
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions cluster/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ module "eks" {
addon_version = var.eks_addon_version.ebs_csi_driver
resolve_conflicts = "OVERWRITE"
service_account_role_arn = module.ebs_csi_irsa.iam_role_arn
configuration_values = jsonencode({
sidecars : {
snapshotter : {
forceEnable : false
}
}
})
}
}

Expand Down
2 changes: 1 addition & 1 deletion cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ variable "eks_addon_version" {
variable "instance_types" {
type = list(any)
description = "List of instance types used by EKS managed node groups"
default = ["m5a.large", "m5d.large", "m5a.large", "m5ad.large", "m4.large"]
default = ["m5.large", "m5d.large", "m5a.large", "m5ad.large", "m4.large"]
}

variable "instance_capacity_type" {
Expand Down

0 comments on commit 7a52c81

Please sign in to comment.