Skip to content

Commit

Permalink
πŸ› fix(main.tf): increase timeout and add wait on helm_release resources
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 23, 2025
1 parent 3bb1d95 commit 7fe072d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ resource "helm_release" "karpenter" {
})
]

timeout = 300
timeout = 600
wait = true
}

resource "helm_release" "nodepool_resources" {
Expand All @@ -106,4 +107,7 @@ resource "helm_release" "nodepool_resources" {
tags = var.tags
})
]

timeout = 600
wait = true
}

0 comments on commit 7fe072d

Please sign in to comment.