Skip to content

Commit

Permalink
impl
Browse files Browse the repository at this point in the history
  • Loading branch information
linkas45 committed Oct 29, 2024
1 parent f391512 commit 4539c4b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,11 @@ resource "helm_release" "castai_evictor_self_managed" {
value = "false"
}

set {
name = "managedByCASTAI"
value = "false"
}

dynamic "set" {
for_each = var.castai_components_labels
content {
Expand Down Expand Up @@ -563,6 +568,11 @@ resource "helm_release" "castai_pod_pinner_self_managed" {
value = castai_aks_cluster.castai_cluster.id
}

set {
name = "managedByCASTAI"
value = "false"
}

dynamic "set" {
for_each = var.api_url != "" ? [var.api_url] : []
content {
Expand Down

0 comments on commit 4539c4b

Please sign in to comment.