Skip to content

Commit

Permalink
disabled fargate support for karpenter because of loki
Browse files Browse the repository at this point in the history
  • Loading branch information
dunefro committed Jul 18, 2024
1 parent c1f5db3 commit 2a856c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ This guide will help you to migrate your terraform code across versions. Keeping
2. Ensure that you runnning on the EKS version `1.30` which is the default version in `0.5.2`

## Upgrade changes (manual)
1. Execute the terraform apply with version `0.6.0`. If it fails run the below command to import access entry for cluster creator
1. Execute the terraform apply with version `0.6.1`. If it fails run the below command to import access entry for cluster creator
```
terragrunt import 'module.aws-eks-kubernetes-cluster.aws_eks_access_entry.this["cluster_creator"]' "$IAM_PRINCIPAL_ARN"
terragrunt import 'module.aws-eks-kubernetes-cluster.aws_eks_access_policy_association.this["cluster_creator_admin"]' $CLUSTER_NAME#$IAM_PRINCIPAL_ARN#arn:aws:eks::aws:cluster-access-policy/AmazonEKSClusterAdminPolicy
```
2. If you still face any issue, go ahead and delete the access entry created in the EKS console Access tab and then run `terraform apply`
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ variable "tags" {
variable "karpenter_fargate_profile_enabled" {
description = "Enable Karpenter Fargate profile"
type = bool
default = true
default = false
}

variable "karpenter_fargate_profile_namespace" {
Expand Down

0 comments on commit 2a856c5

Please sign in to comment.